function lrgMap () {
	var newWindow;
	var Title = "Large Map";
	var picWidth = 504;
	var picHeight = 329;
	var picture = "map_large.jpg";
	var windowWidth = eval (picWidth);
	var windowHeight = eval (picHeight) + 50;
	newWindow = window.open("", "newWindow","width=" + windowWidth + ",height=" + windowHeight + ",left=10,top=10");
	newWindow.document.open();
	newWindow.document.write('<html>');
	newWindow.document.write ('<head>');
	newWindow.document.write('<title>' + Title + '<\/title>');
	newWindow.document.write('<link rel=\"stylesheet\" type=\"text\/css\" href=\"CSS\/standard.css\">');
	newWindow.document.write ('<\/head>');
	newWindow.document.write('<body style="background:  none;">'); 
	newWindow.document.write ('<p style=\"margin:  0;  padding:  0;  Smargin-bottom:  5px;\">');
	newWindow.document.write('<img src="contact_images\/' + picture + '" width="' + picWidth + '" height="' + picHeight + '" alt="' + Title +'" \/>'); 			
	newWindow.document.write ('<\/p>')
	newWindow.document.write ('<p style=\"text-align: center;  margin-bottom:  2px;\"><a href=\"javascript:self.close()\">Close This Window<\/a><\/p>');
	newWindow.document.write ("<\/body>");
	newWindow.document.write ("<\/html>");
	newWindow.document.close();
	newWindow.focus();
}
