function imagePopUp(img) {
	html = "<html><head><title>Celgard</title></head>" + "<body style='margin: 10px 0; text-align:center; font-family:verdana; font-size:10px; color:#ccc;'>" + "<img src='" + img + "' border=0 name=image " + "/>" + "<p><a href='#' onclick='window.print();return false;' style='color:#005dab;'>Print</a>&nbsp; | &nbsp;<a href='#' onclick='window.close();'>Close</a></p></body></html>";
	popup=window.open ('','image','toolbar=0,location=0,directories=0,menuBar=0,scrollbars=0,resizable=0,width=700,height=520');
	popup.document.open();
	popup.document.write(html);
	popup.document.focus();
	popup.document.close() 
};