<!--

	
	//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);
	}
	function showfooter() {var mStr = '<p class="footer">&copy; Copyright 2003&ndash;2010 Elizabeth Joy Kimes<br>All Rights Reserved</p>';
        document.write(mStr);
        return true;
 
    }

	
// -->

