

function show_photo( pFileName, pTitle, pCaption) {

// specify window parameters
  photoWin = window.open( "", "photo", "width=720,height=600,status,scrollbars,resizable,screenX=20,screenY=40,left=20,top=40");

// wrote content to window
  photoWin.document.write('<html><head><title>' + pTitle + '</title></head>');	
  photoWin.document.write('<BODY style="background: url(assets/mainbg.png) repeat-x fixed;">');
  photoWin.document.write('<center>');
  photoWin.document.write('<font size=+3 color="white" face="arial,helvetica"><b>' + pCaption + '</b></font><br>');
  photoWin.document.write('<img style="border:3px solid #a0a0a0;" src="' + pFileName + '"><br>');
  photoWin.document.write('<font size="2" color="black" face="arial,helvetica">');	
  photoWin.document.write( pTitle + '<br><small>&copy; SIPAD Systems, Inc.</small>');
  photoWin.document.write('<p></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();

}


function show_photo2( pFileName, pTitle, pCaption) {

// specify window parameters
  photoWin = window.open( "", "photo", "width=720,height=600,status,scrollbars,resizable,screenX=20,screenY=40,left=20,top=40");

// wrote content to window
  photoWin.document.write('<html><head><title>' + pTitle + '</title></head>');	
  photoWin.document.write('<BODY style="background: url(assets/level3bg.jpg) repeat-x fixed;">');
  photoWin.document.write('<center>');
  photoWin.document.write('<font size=+3 color="black" face="arial,helvetica"><b>' + pCaption + '</b></font><br>');
  photoWin.document.write('<img style="border:3px solid #a0a0a0;" src="' + pFileName + '"><br>');
  photoWin.document.write('<font size="2" color="black" face="arial,helvetica">');	
  photoWin.document.write( pTitle + '<br><small>&copy; SIPAD Systems, Inc.</small>');
  photoWin.document.write('<p></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();

}

