
function autoWindow(imageName,w,h) {
LeftPosition = (screen.width) ? (screen.width-w)/2 : 0;
TopPosition = (screen.height) ? (screen.height-h)/2 : 0;
newWindow = window.open("","newWindow","width="+w+", height="+h+", top="+TopPosition+", left="+LeftPosition);
newWindow.document.open();
newWindow.document.write('<HTML><BODY oncontextMenu="return false" bgcolor="#cccccc" style="background-image:url(GUI/loading.gif);background-repeat:no-repeat;background-position:center" LEFTMARGIN="0" TOPMARGIN="0" MARGINHEIGHT="0" MARGINWIDTH="0" onBlur="self.close()">'); 
newWindow.document.write('<IMG SRC='+imageName+' WIDTH='+w+' HEIGHT='+h+'>'); 
newWindow.document.write('</BODY></HTML>');
newWindow.document.close();
newWindow.focus();
}

