// (Start of) image width script************************************************

/* Image popup
   Copyright 2002 Michel Plungjan "michel at irt.org" */
var copyright="Paul Taylor";
defaultTitle=" Please wait for image to load ";
showCaption=false; // change to false if you do not want to see it
var photo;
W = screen.availWidth ;
H = screen.availHeight;

function popPhoto(pName, pW, pH, pCaption) {
pTitle=defaultTitle;
if (pCaption) pTitle+= " - " + pCaption;
else pCaption="";
bgCol='#000000';

pW=(pW)?pW:300;
pH=(pH)?pH:600;
if (showCaption) pH+=30;
hPos = parseInt((W-pW)/2);
vPos = parseInt((H-pH)/2);
if (photo &&!photo.closed) photo.close();
img = pName
photo=window.open('', "PhotoWindow",
"width="+pW+",height="+pH+",status=no,top="+vPos+",left="+hPos+",screenY="+hPos+",screenX="+vPos);

photo.document.write('<ti'+'tle>'+pTitle+'</title><bo'+'dy bgColor="'+bgCol+'" onContextMenu="return false"'+
' bgcolor="#000000" marginwidth="0" marginheight="0" leftmargin="0" rightmargin="0" topmargin="0" bottommargin="0"'+
' text="#cccccc" link="#ffffff" vlink="#ffffff" alink="#66ccff">'+
'<a href="#" onClick="window.close()"><img src="'+img+'" GALLERYIMG="no" border="0" ALT="Copyright (c) 1999-'+
new Date().getFullYear()+' '+copyright+'"></a><br><center>'+pCaption+'</center></bo'+'dy>');
photo.document.close();
return false;
}

// (End of) image width script************************************************