﻿<!-- 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 showPicLandscape( pFileName, pTitle, pCaption) {

// Specify window parameters.
  photoWin = window.open( "", "photo", "width=750,height=650,status,scrollbars,resizable,screenX=20,screenY=40,left=20,top=40");

// Write content to window.
  photoWin.document.write('<html><head><center><h4>' + pTitle + '</h4></head>');	
  photoWin.document.write('<BODY BGCOLOR=#ececec TEXT=#000000 LINK=#33CCFF VLINK=#FF6666>');
  photoWin.document.write('<img src="' + pFileName + '"><p>');
  photoWin.document.write('<font size="2" face="arial,helvetica">');	
  photoWin.document.write( '' + pCaption + ' ');
  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();

    photoWin.focus();

}

// end of comment to hide scripts from old browsers -->

function showPicPortrait( pFileName, pTitle, pCaption) {

// Specify window parameters.
  photoWin = window.open( "", "photo", "width=680,height=670,status,scrollbars,resizable,screenX=20,screenY=20,left=20,top=10");

// Write content to window.
  photoWin.document.write('<html><head><center><h4>' + pTitle + '</h4></head>');	
  photoWin.document.write('<BODY BGCOLOR=#ececec TEXT=#000000 LINK=#33CCFF VLINK=#FF6666>');
  photoWin.document.write('<img src="' + pFileName + '"><p>');
  photoWin.document.write('<font size="2" face="arial,helvetica">');	
  photoWin.document.write( '' + pCaption + ' ');
  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();

    photoWin.focus();

}

// end of comment to hide scripts from old browsers -->

