<!-- 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( pTitle, pFileName, pWidth, pHeight, le) 
{
 
// specify window parameters
  photoWin = window.open( "", "photo" + le, "width=" + pWidth + ",height=" + pHeight + ",status=0,scrollbars=0,noresize,left=50,top=0");
 
// wrote content to window
  photoWin.document.write('<html><head><title>' + pTitle + '</title>');
  photoWin.document.write('<scr' + 'ipt>window.focus();</scr' + 'ipt></head>'); 
  photoWin.document.write('<BODY BGCOLOR=#FFFFFF TEXT=#FFFFCC LINK=#33CCFF VLINK=#FF6666 marginheight="0" marginwidth="0" leftmargin="0" rightmargin="0" topmargin="0">');
  photoWin.document.write('<img src="' + pFileName +'"' + ' width="' + pWidth +'" height="'+pHeight+'">'); 
  photoWin.document.write(le + '</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 -->

