function enlarge_photo(window_name, pic_width, pic_height, img_path) {
var w = window.open('',window_name,'width=' + (pic_width + 30) + ',height=' + (pic_height + 70) + ',scrollbars=no,resizable=yes');
var d = w.document;
d.write('\
<HTML><HEAD><TITLE>Byers Numismatic Corp.</TITLE></HEAD>\
<BODY BGCOLOR=\"#000000\">\
<center><IMG SRC="' + img_path + '">\
<p><a href\=\"javascript\: self.close\(\)\;\"\
OnClick\=\"self.close\(\)\;\"><img src="http://byersnc.com/closewindow.gif" width=184 height=20 border=0></a>\
<br>\
</center></body></html>');
d.close();
w.focus();
}
function enlarge_photos(window_name, pic1_width, pic1_height, img1_path, pic2_width, pic2_height, img2_path) {
var w = window.open('',window_name,'width=' + (760) + ',height=' + (500) + ',scrollbars=yes,resizable=yes');
var d = w.document;
d.write('\
<HTML><HEAD><TITLE>Byers Numismatic Corp.</TITLE></HEAD>\
<BODY BGCOLOR=\"#000000\">\
<center><IMG SRC="' + img1_path + '" WIDTH=' + pic1_width + ' HEIGHT=' + pic1_height
+ '><p>\
<IMG SRC="' + img2_path + '" WIDTH=' + pic2_width + ' HEIGHT=' + pic2_height
+ '>\
<p><a href\=\"javascript\: self.close\(\)\;\"\
OnClick\=\"self.close\(\)\;\"><img src="http://byersnc.com/closewindow.gif" width=184 height=20 border=0></a>\
<br>\
</center></body></html>');
d.close();
w.focus();
}
function enlarge_3photos(window_name, pic1_width, pic1_height, img1_path, pic2_width, pic2_height, img2_path, pic3_width, pic3_height, img3_path) {
var w = window.open('',window_name,'width=' + (760) + ',height=' + (500) + ',scrollbars=yes,resizable=yes');
var d = w.document;
d.write('\
<HTML><HEAD><TITLE>Byers Numismatic Corp.</TITLE></HEAD>\
<BODY BGCOLOR=\"#000000\">\
<center><IMG SRC="' + img1_path + '" WIDTH=' + pic1_width + ' HEIGHT=' + pic1_height
+ '><p>\
<IMG SRC="' + img2_path + '" WIDTH=' + pic2_width + ' HEIGHT=' + pic2_height
+ '><p>\
<IMG SRC="' + img3_path + '" WIDTH=' + pic3_width + ' HEIGHT=' + pic3_height
+ '>\
<p><a href\=\"javascript\: self.close\(\)\;\"\
OnClick\=\"self.close\(\)\;\"><img src="http://byersnc.com/closewindow.gif" width=184 height=20 border=0></a>\
<br>\
</center></body></html>');
d.close();
w.focus();
}
function enlarge_gallery(window_name, img1_path, img2_path) {
var w = window.open('',window_name,'width=' + (760) + ',height=' + (500) + ',scrollbars=yes,resizable=yes');
var d = w.document;
d.write('\
<HTML><HEAD><TITLE>Byers Numismatic Corp.</TITLE></HEAD>\
<BODY BGCOLOR=\"#000000\">\
<center><IMG SRC="' + img1_path + '"><p>\
<IMG SRC="' + img2_path + '">\
<p><a href\=\"javascript\: self.close\(\)\;\"\
OnClick\=\"self.close\(\)\;\"><img src="http://byersnc.com/closewindow.gif" width=184 height=20 border=0></a>\
<br>\
</center></body></html>');
d.close();
w.focus();
}