<!-- hide this script from old browsers
// This script opens a new browser window and writes
// HTML to display an image with a title and caption

function show_photo( pFileName, pTitle, pCaption, pProductName ) {

// specify window paramaters
	photoWin = window.open( "", "photo", "width=350,height=550,screenX=20,screenY=40,left=270,top=70");

// wrote content to window
	photoWin.document.write('<html><head><title>' + pTitle + '</title><script type="text/javascript">

  var _gaq = _gaq || [];
  _gaq.push(['_setAccount', 'UA-1828510-1']);
  _gaq.push(['_trackPageview']);

  (function() {
    var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
    ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
    var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
  })();

</script>
</head>');	
	photoWin.document.write('<body bgcolor=#FFFFFF text=#003366 link=red vlink=red alink=red>');
	photoWin.document.write('<center>');
	photoWin.document.write('<font size=3 face="verdana,arial,helvetica"><b>' + pCaption + '</b></font></p>');
	photoWin.document.write('<img src="' + pFileName + '" border=1>');
	photoWin.document.write('<p><font size=2 face="arial,helvetica" color="#666666">' + pProductName + '</font></p>');
	photoWin.document.write('<font size=2 face="arial,helvetica">');	
	photoWin.document.write('<p><a href="#" onclick="javascript:window.close();" style="text-decoration: none;">CLOSE WINDOW</a></p>');
	photoWin.document.write('</font></body></html>');
	photoWin.document.close();	
	
// If we are on NetScape, we can bring the window to the front
	if (navigator.appName.substring(0,8) == "Netscape") photoWin.focus();

}
// done hiding from old browsers -->
