<!--
var mapURL;
var newWindow;
var newWindowTitle;

function popUp(theURL, title) 
{
	newWindowTitle = title
	picURL = theURL;
	newWindow = window.open("", "imgN", "status=no,scrollbars=auto,resizable=yes,width=550,height=400");
	newWindow.focus();
	newWindow.location = "map_pic.html";
}

function writeHTML() 
{
	var htmlStr = "";
	htmlStr += "<html>\n<head>\n<title>" + newWindowTitle + "</title>\n</head>";
	htmlStr += "<body>\n<table border='0' width='100%'>\n<tr>\n<td align='center'>";
	htmlStr += "<img src='" + picURL + "'>";
	htmlStr += "<br>\n<br>\n<a href ='' onClick='window.close()'><img src='gfx/close.gif' width='100' height='30' border='0' alt='Close window'></a>";
	htmlStr += "\n</tr>\n</table>\n</html>";
	newWindow.document.write(htmlStr);
	newWindow.document.close();
}

-->
