<!--
	
	//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(info);
	}
	
	//Use the text up to the first colon for thumbnail captions
	function shortcaption(caption) {
		var comma = caption.indexOf(":");
		if (comma > 0)
			shortcap = caption.substring(0, comma);
		else
			shortcap = caption;
		document.write(shortcap);
        }
	//Copyright function
        function copyw(mStr) {
          mStr ='All material &copy <a href="mai'+ 'lto:mherri' +'ng@yaho' +'o.com">Mark & Meg</a> all rights reserved. Click <a href="mai'+ 'lto:mherri' +'ng@yaho' +'o.com">here</a> to contact us.'
          document.write(mStr);
		}
		function camerainfo(oldinfo) {
		  var s = oldinfo;
	     // replace all the generated <br>	  
		  while (s.indexOf("<br>") > -1)
              s = s.replace("<br>","|");

		  s = s.replace("Exposure time: ","");
  	 	  s = s.replace("Aperture: ","");
	      s = s.replace("Camera maker: ","<br>");
		  s = s.replace("Camera model: ","");
		  s = s.replace("Shooting date: ","");
	  	  s = s.replace("Focal length: ","");
		  s = s.replace("Resolution: ","");
		  s = s.replace("Metering Mode: ","");
	          document.write(s);
	    }
	
// -->

