 <!-- 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( pFileName, pTitle, pCaption) {

// specify window parameters
  photoWin = window.open( "", "photo", "width=800,height=600,status,scrollbars,resizable,screenX=40,screenY=40,left=40,top=40");

// wrote content to window
  photoWin.document.write('<html><head><title>' + pTitle + '</title></head>');
  photoWin.document.write('<BODY BGCOLOR=#fffbe8 TEXT=#000000 LINK=#33CCFF VLINK=#FF6666>');
  photoWin.document.write('<center>');
  photoWin.document.write('<font size="4" face="arial,helvetica"><b>' + pCaption + '</b></font><br>');
  photoWin.document.write('<img src="' + pFileName + '"><p>');
  photoWin.document.write('<font face="arial,helvetica">');
  photoWin.document.write( ' ' + pTitle + ' <br>');
  photoWin.document.write('<b>Wey &amp; Arun Canal Trust</b>');
  photoWin.document.write('<br><a href=""onClick=window.close()>Click here to close window</a>');
  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();

}
// done hiding from old browsers -->//-->