function openWindow(imageName,imageWidth,imageHeight,alt,comments,materials) {
image_height = parseInt(imageHeight) + 30;
newWindow = window.open("","newWindow","width="+imageWidth+",height="+image_height);
newWindow.document.open();
newWindow.document.write('<HTML><TITLE>'+alt+'</TITLE><BODY bgcolor="black" LEFTMARGIN="0" TOPMARGIN="0" MARGINHEIGHT="0" MARGINWIDTH="0">');
newWindow.document.write('<IMG SRC='+imageName+' WIDTH='+imageWidth+' HEIGHT='+imageHeight+' ALT='+alt+' onclick="self.close()">');
newWindow.document.write('<BR><b><center><font color="white" size="4">'+comments+'<br></b>'+materials+' </font><br></center>');
newWindow.document.write('</BODY></HTML>');
newWindow.document.close();
newWindow.focus();}
