function imagePopUp(img) {
		html = "<html><head><title>Enlarged Image</title></head><body style='margin: 0px 0; text-align:center;'><IMG SRC='" + img + "' BORDER=0 NAME=image onload='window.resizeTo(document.image. width,(document.image.height*1.3))'></body></html>"; 
		popup=window.open ('','image','toolbar=0,location=0, directories=0,menuBar=0, scrollbars=0,resizable=1'); 
		popup.document.open(); 
		popup.document.write(html); 
		popup.document.focus(); 
		popup.document.close();
}
