function image_open(image_loc,img)
{
  HTML = "<html><style type='text/css'>body{margin-left: 0px;	margin-top: 0px;	margin-right: 0px;	margin-bottom: 0px;}</style><body onBlur='top.close()'><img src='"+ image_loc +"' border=0 name=load_image onLoad='window.resizeTo(document.load_image.width,document.load_image.height+40)'></body></html>";
  popupImage = window.open('','','toolbar=no,scrollbars=no,copyhistory=no,menubar=no');
  popupImage.document.open();
  popupImage.document.write(HTML);
  popupImage.document.close();
  obj_img = document.getElementById(img);

}
