
function imagePopUp(img) {
html = "<html><head><title>Enlarged Image</title>" + 
"</head><body style='margin: 0px 0px 0px 0px; text-align:center;'>" + 
"<IMG src='" + img + "' BORDER=0 NAME=image" + 
//"onload='window.resizeTo(document.image. width,(document.image.height*1.3))'>" + 
"</body></html>"; 
popup=window.open ('','image','toolbar=0,location=0, directories=0,menuBar=0, scrollbars=0,resizable=1,width=600,height=600');
popup.document.open(); 

popup.document.write(html); 
//popup.document.focus(); 
popup.document.close() }; 
