function enlarge_photo(prod_name, base_pid, pic_width, pic_height, img_path) {
var window_name = '0';
var w = window.open('',window_name,'width=' + (pic_width + 45) + ',height=' + (pic_height + 150) + ', scrollbars=yes, resizable=yes');
var d = w.document;
d.write('\
<HTML><HEAD><TITLE>' + prod_name + '</TITLE></HEAD>\
<BODY BGCOLOR=\"#FFFFFF\">\
<center><FONT SIZE="2" FACE="Verdana,Arial,Helvetica,sans-serif">\
<B>' + prod_name + '</B><br> (' + base_pid + ')</FONT></B>\
<p><IMG SRC="' + img_path + '"  ALT="' + prod_name + '">\
<p><FONT SIZE="2" FACE="Verdana,Arial,Helvetica,sans-serif"><a href\=\"javascript\: self.close\(\)\;\"\
OnClick\=\"self.close\(\)\;\">Close Window</a></font>\
</center></body></html>');
d.close();
w.focus();
}

