<!-- hide script from old browsers
// This script opens a new browser window and writes
// HTML to display an image with a title

function show_photo2( pFileName, pWidth, pHeight, pTitle){

// specify window parameters without scrollbars
imageWin = window.open( "", "photo","width="+pWidth+",height="+pHeight+",scrollbars=0,resizable,screenX=0,screenY=0,left=0,top=0");

//wrote content to window
imageWin.document.write('<html><head><title>' + pTitle + '</title></head>');
imageWin.document.write('<body bgcolor=#808080>');
imageWin.document.write('<center>')
imageWin.document.write('<img src="' + pFileName + '">');
imageWin.document.write('</center></body></html>');
imageWin.document.close();
// If we are on Netscape bring the window to front
if (navigator.appName.substring(0,8) == "Netscape") imageWin.focus();
}

function show_photo3( pFileName, pWidth, pHeight, pTitle){

// specify window parameters with scrollbars
imageWin = window.open( "", "photo","width="+pWidth+",height="+pHeight+",scrollbars=1,resizable,screenX=0,screenY=0,left=0,top=0");

//wrote content to window
imageWin.document.write('<html><head><title>' + pTitle + '</title></head>');
imageWin.document.write('<body bgcolor=#808080>');
imageWin.document.write('<center>');
imageWin.document.write('<img src="' + pFileName + '">');
imageWin.document.write('</center></body></html>');
imageWin.document.close();
// If we are on Netscape bring the window to front
if (navigator.appName.substring(0,8) == "Netscape") imageWin.focus();
}


//done hiding from old browsers
 -->
