function IMAGE_OPEN(image_loc,img)
{	
	HTML = "<html><style>body{margin:0px 0px 0px 0px}</style><body onBlur='top.close()'><img src='"+ image_loc +"' border=0 name=load_image onLoad='top.resizeTo(document.load_image.width+10,document.load_image.height+30)'></body></html>";
	popupImage = window.open('','_blank','toolbar=no,scrollbars=no,height=1,width=1,left=50,top=50');
	popupImage.document.open();
	popupImage.document.write(HTML);
	popupImage.document.close();
	obj_img = document.getElementById(img);
}