<!-- 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( "", "gallery", "width=310,height=400,status=no,scrollbars=yes,resizable=no,screenX=30,screenY=200,left=30,top=200");// wrote content to window  photoWin.document.write('<html><head><title>' + pTitle + '</title>');  photoWin.document.write('<link href="dwynstyle.css" rel="stylesheet" type="text/css" /></head>');	  photoWin.document.write('<BODY BGCOLOR=#FFFFFF leftmargin="0" topmargin="0" marginwidth="0" marginheight="0">');  photoWin.document.write('<table align="center"><tr><td>');  photoWin.document.write('<table width="100%" height="100%" cellpadding="0" cellspacing="0" border="0">');  photoWin.document.write('<tr><td valign="top"><p></p><button type="button" name="close" value="cWindow" class="button" onclick="javascript:window.close();" ><img src="images/button_close.gif"></button></td></tr>');  photoWin.document.write('<tr><td><br><img src="' + pFileName + '"></td></tr>');  photoWin.document.write('<tr><td valign="top"><p></p><p class="gTitle">' + pTitle + '</p><br></td></tr>');  photoWin.document.write('<tr><td valign="top"><p class="gDescr">' + pCaption + '</p><br></td></tr></table>');  photoWin.document.write('</table></td></tr>');  photoWin.document.write('<p></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 -->// JavaScript Document