<!--
function OpenWindow(ImageURL, Desc, Photog, PhotogE, PicWidth, PicHeight){

var PicURL = ImageURL;
PicHeight = parseInt(PicHeight);
PicWidth = parseInt(PicWidth);
var WinHeight = PicHeight + 158;
var WinWidth = PicWidth + 170;
var header = "";
if (WinWidth < 475)
	WinWidth = 475;
	
if (PhotogE != '') {
	header = "../images/header1.jpg";
	map = "<map name=\"Map\"><area shape=\"rect\" coords=\"184,33,332,47\" href=\"mailto:" + PhotogE + "\"><area shape=\"rect\" coords=\"334,33,467,47\" href=\"javascript:opener.location.href='http://www.nashville.gov/photo_gallery/photo_gallery_submit.asp';self.close()\"></map>";
} else {
	header = "../images/header2.jpg";
	map = "<map name=\"Map\"><area shape=\"rect\" coords=\"334,33,467,47\" href=\"javascript:opener.location.href='http://www.nashville.gov/photo_gallery/photo_gallery_submit.asp';self.close()\"></map>";
}

var WinAtt = "height=" + WinHeight + ",width=" + WinWidth + ",scrollbars=no,resizable=yes";

if (window.PicWindow) {
	window.PicWindow.close();}

PicWindow = window.open("", "PicWindow", WinAtt);

PicURL = "../images/" + PicURL;

window.PicWindow.document.write("<html><head><title>Nashville's Digital Photo Gallery</title><style type=\"text/css\"><!-- .borders { border: 1px; border-style: solid; border-color: #000000; }.mainTD { border-top: 0px; border-right: 1px; border-bottom: 1px; border-left: 1px; border-style: solid; border-color: #000000; } --></style><body bgcolor=\"#FFFFFF\" topmargin=\"0\" leftmargin=\"0\" marginwidth=\"0\" marginheight=\"0\"><center><table border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"" + WinWidth + "\"><tr><td class=\"borders\" background=\"../images/headerbg.jpg\" align=\"right\" valign=\"top\"><img src=\"" + header + "\" width=\"473\" height=\"49\" vspace=\"0\" hspace=\"0\" border=\"0\" usemap=\"#Map\">" + map + "</td></tr><td class=\"mainTD\" bgcolor=\"#E6E7EB\" align=\"center\" valign=\"middle\" height=\"100%\"><br><table class=\"borders\" bgcolor=\"#FFFFFF\" cellspacing=\"0\" cellpadding=\"10\" border=\"0\"><tr><td align=\"center\" valign=\"middle\"><img src=\"" + PicURL + "\" width=\"" + PicWidth + "\" height=\"" + PicHeight + "\" vspace=\"0\" hspace=\"0\" border=\"1\" color=\"#000000\"></td></tr><tr><td align=\"center\" valign=\"middle\"><font face=\"Verdana\" size=\"1\"><b>" + Desc + "<br>" + Photog + "</b></font></td></tr></table><br></td></tr></table></center></body></html>");

PicWindow.document.title = "Nashville's Digital Photo Gallery";
PicWindow.focus();
}
-->