function image_open(image_loc,img)
{
	var mySplitResultOnDelimiter = image_loc.split("/");
	var imageCaptionResultOnDelimiter = mySplitResultOnDelimiter[mySplitResultOnDelimiter.length -1].split(".");
	var imageCaption = imageCaptionResultOnDelimiter[0];
  HTML = "<html><style>body{margin:50px 0px 50px 0px}</style><body bgcolor=333333 onBlur='top.close()'><table valign=middle align=center><tr><td align=center><img src='"+ image_loc +"' border=0 name=load_image onLoad='window.resizeTo(document.load_image.width+150,document.load_image.height+150)'><br><br><font color=cccccc face=verdana,arial>"+ imageCaption +"</font><br><br></td></tr></table></body></html>";
  popupImage = window.open('','_blank','toolbar=no,location=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;
}

