<!--
	
	//If the first character is a comma, then there's no technical data; test for it.
	function showtechdata(info) {
		if (info.substring(0,1) != ",")
				document.write("<br /><br />" + info);
	}
	
	//Use the text up to the first comma for thumbnail captions
	function shortcaption(caption) {
		var comma = caption.indexOf(",");
		if (comma > 0)
			shortcap = caption.substring(0, comma);
		else
			shortcap = caption;
		document.write(shortcap);
	}
	
// -->


