//Open images in new windows
function image_open(image_loc,img)
{
  HTML = "<html><style>body{margin:0px 0px 0px 0px}</style><body bgcolor=#000000 text=#FFFFFF onBlur='top.close()'><img src='"+ image_loc +"' border=0 name=load_image onLoad='window.resizeTo(document.load_image.width+10,document.load_image.height+80)'></body></html>";
  popupImage = window.open('','_blank','toolbar=no,scrollbars=no');
  popupImage.document.open();
  popupImage.document.write(HTML);
  popupImage.document.close();
  obj_img = document.getElementById(img);
  obj_img.src= obj_img.src;
}

function PopupPic(sPicURL) {
     window.open( "./images/_photo.html?"+sPicURL, "",  
     "resizable=1,HEIGHT=200,WIDTH=200");
}
