function openwindow(imageName,imageWidth,imageHeight,alt) {
	browserH = imageHeight+100;
	browserW = imageWidth+60;
	newWindow = window.open("","","width=" + browserW + ",height=" + browserH + ",resizable=yes,scrollbars=yes,menubar=no,toolbar=no,location=no,directories=no,status=no");
	newWindow.document.open();
	newWindow.document.write('<html><head><title>'+alt+'</title></head><body style="background-color: #990000; padding: 0; margin: 20; font-family: Arial, Helvetica, San-Serif; font-size: 10px; color: #7D2424;">'); 
	newWindow.document.write('<center><img src='+imageName+' width='+imageWidth+' height='+imageHeight+' alt='+alt+'></center>'); 
	newWindow.document.write('<p align="right"><a href="javascript:window.close();" style="font-family: Times, New Times Roman, Georgia, Serif; font-size: 14px; color: #ffffff;">Close Window</a> &nbsp; &nbsp; </p>'); 
	newWindow.document.close();
	newWindow.focus();
}
