<!-- // hide from old browsers
// This code opens a window for images

function imageDisplay(imageWidth,imageHeight,imageName,imageDescription)
{
windWidth=imageWidth+40;
windHeight=imageHeight+130;
winStats='toolbar=no,location=no,directories=no,menubar=no,';
winStats+='scrollbars=no,width=';
winStats+=windWidth;
winStats+=',height=';
winStats+=windHeight;
if (navigator.appName.indexOf("Microsoft")>=0) {
winStats+=',left=35,top=35'
}else{
winStats+=',screenX=35,screenY=35'
}
imgWin=window.open("blank.html","imageWin",winStats);

imgWin.document.write('<center><a href="javascript:window.close()"><img border="0" src="',imageName,'" width="',imageWidth,'" height="',imageHeight,'"></a>');
imgWin.document.write('<br><br><font color="green" size="2" face="verdana,arial,times roman"><b>',imageDescription,'</b><center>');
imgWin.document.write('<p align="right"><a href="javascript:window.close()">close window</a></p>');
imgWin.document.bgColor='#FEFDE0';
}


-->