function image_open(image_loc,img){  HTML = "<html><style>body{margin:0px 0px 0px 0px}</style><body bgcolor=333333 onBlur='top.close()'><div valign=middle><table height=100% align=center><tr><td ><img src='"+ image_loc +"' border=0 name=load_image onLoad='window.resizeTo(document.load_image.width+30,document.load_image.height+30)'></td></tr></table></div></body></html>";  popupImage = window.open('','_blank','toolbar=no,scrollbars=yes,resizable=yes,left=0,top=0,');  popupImage.document.open();  popupImage.document.write(HTML);  popupImage.document.close();  obj_img = document.getElementById(img);  obj_img.src= obj_img.src;}