<!--
	
	//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);
	}
	


	//Display the footer
 
	function showfooter() {

		document.write("<p class='footer'>All material &copy; <a href='javascript:emailto();'>Robert I. Larsen</a>; all rights reserved</p>");

		return true;

	}
	

	// Use this function to confuse robots that collect email addresses.

	function emailto() {

        	var mStr =         'mai'+ 'lto\:phot' + 'ography' + '@rob' + 'lar' + 'sen.c' + 'om';

        	    location.href = mStr;

	}




// -->


