
//Standard Comp Photo pop up window script 

function show_default( pFileName, pTitle, pCaption, pLocation) {
// specify window parameters
  photoWin = window.open( "", "photo", "width=550,height=400,status,scrollbars,resizable,screenX=20,screenY=20,left=5,top=5");
// wrote content to window
  photoWin.document.write('<html><head><title>Tug Images</title><link rel="stylesheet" href="216.css"></head>');
  photoWin.document.write('<BODY background="img/background.gif">');
  photoWin.document.write('<center>');
  photoWin.document.write('<table width="100%" height="100%" cellpadding="0" cellspacing="0"><tr>');
  photoWin.document.write('<td><img align="center" src="' + pFileName + '"><br /><br /><div align="center" style="font-family:tahoma;font-size:12px;"><a HREF="#" onClick="window.close()">Close Window</a></div>');
  photoWin.document.write('</td></tr></table></center></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 -->
