
function openWindow(imageName,imageWidth,imageHeight,alt) {
newWindow = window.open("","newWindow","width="+imageWidth+",height="+imageHeight+",top=30,left=30");
newWindow.document.write('<HTML><TITLE>Heaton Cooper Studio</TITLE><BODY bgcolor="#000000" LEFTMARGIN="0" scrolling="auto" resizable=yes TOPMARGIN="0" MARGINHEIGHT="0" MARGINWIDTH="0" onBlur="self.close()">'); 
newWindow.document.write('<IMG SRC='+imageName+' WIDTH='+imageWidth+' HEIGHT='+imageHeight+' ALT='+alt+'>'); 
newWindow.document.write('</BODY></HTML>');
newWindow.document.close();
newWindow.focus();
}


function newwindow15(file) {
newWindow = open(file,"newWindow","width=400,height=550,top=30,left=30,scrollbars=yes,resizable=yes");	
}


