
/**
 image_popup -
 		Displays image in new window
 		Window sized upon the image's height and width
 		Centers image to center of screen.
*/
function image_popup(image_src) {

   var popupWindow = "toolbar=no,location=no,status=no,statusbar=0,menubar=no,scrollbars=no,directories=no,titlebar=yes";

   var HTML = "<html><head><title>Valspar</title></head><style>body {text-align:center;margin:0 auto;}</style><body topmargin=\"0\" leftmargin=\"0\" marginwidth=\"0\" marginheight=\"0\" onBlur=\"top.close();\">";
   var HTML_IMG = "<img src=\""+ image_src +"\" border=\"0\" name=\"load_image\" onLoad=\"window.resizeTo(document.load_image.width+10,document.load_image.height+59);moveTo((screen.width-load_image.width)/2,(screen.height-load_image.height)/2);\" border=\"0\" alt=\"Fullsize\">";
   var HTML_HREF = "<a href=\"#\" onclick=\"top.close();\">" + HTML_IMG + "</a><br>";


    HTML = HTML + HTML_HREF +"</body></html>";


 var popupImage = window.open('','_blank',popupWindow);
 popupImage.document.open();
 popupImage.document.write(HTML);
 popupImage.document.close();
 popupImage.window.focus();
}
