//<![CDATA[
function openWindow(imageName,imageWidth,imageHeight,alt,posLeft,posTop){
 newWindow = window.open("","tabs3","width="+imageWidth+",height="+imageHeight+",scrollbars=no,left="+posLeft+",top="+posTop);
 newWindow.document.open();
 newWindow.document.writeln('<html><title>'+alt+'</title><body style="margin: 0;" onblur="self.close()">'); 
 newWindow.document.writeln('<img src=\"'+imageName+'\" width='+imageWidth+' height='+imageHeight+' alt=\"'+alt+'\">');
 newWindow.document.writeln('</body></html>');
 newWindow.document.close();
 newWindow.focus();
}
//]]>