// JavaScript Document

<!-- hide from old browsers
function show_photo(pFileName, pTitle)


// window parameters
{photoWin = window.open( "", "photo",
     "width=550,height=400,status=no,scrollbars=no,resizable=no,screenX=300,screenY=50,left=300,top=50");
	 
// write window content

photoWin.document.write('<html><head><title>' + 
    pTitle + '</title></head>');

photoWin.document.write('<body onLoad="window.focus();">');

// always on top
// onBlur="self.focus()"

photoWin.document.write('<center>');

photoWin.document.write('<img src="' + 
    pFileName + '">');
	
photoWin.document.write('</body></html>');

photoWin.document.close();
}
// finish hide-->

