<!--
function zoom(pic, W, H, inf) {
PreView = window.open(pic, "zoom_pic", "toolbar=0,left=300,top=150,location=0,status=0,menubar=0,scrollbars=0,width="+(W+40)+",height="+(H+40)+",resizable=0");
PreView.document.open();
PreView.document.write("<HTML><HEAD><TITLE>" + inf + "</TITLE>");
PreView.document.write("<STYLE>img { border: solid 1px dimgray; }</STYLE></HEAD><BODY BGCOLOR=d8d8d8 LEFTMARGIN=20 TOPMARGIN=20>");
PreView.document.write("<a href='javascript:self.close();'><IMG BORDER=0 SRC='" + pic + "' WIDTH='" + W + "' HEIGHT='" + H + "'></a>");
PreView.document.write("</BODY></HTML>");
PreView.document.close();
PreView.focus();
}

function map(pic, W, H, inf) {
MapView = window.open(pic, "zoom_pic", "toolbar=0,left=300,top=150,location=0,status=0,menubar=0,scrollbars=0,width="+(W+40)+",height="+(H+40)+",resizable=0");
MapView.document.open();
MapView.document.write("<HTML><HEAD><TITLE>" + inf + "</TITLE>");
MapView.document.write("<STYLE>img { border:none; }</STYLE></HEAD><BODY LEFTMARGIN=20 TOPMARGIN=20>");
MapView.document.write("<a href='javascript:self.close();'><IMG SRC='" + pic + "' WIDTH='" + W + "' HEIGHT='" + H + "'></a>");
MapView.document.write("<div align='right'><a href='img/map.pdf' target='_blank'><IMG SRC='img/icon_print.gif' WIDTH='14' HEIGHT='12'></a></div>");
MapView.document.write("</BODY></HTML>");
MapView.document.close();
MapView.focus();
}
//-->