<!-- Begin
function NewWindow(locmap, map, w, h, scroll) {
var winl = screen.width  / 3;
var wint = 0;
winprops = 'height='+h+',width='+w+',top='+wint+',left='+winl+',scrollbars='+scroll+',resizable'
win = window.open(locmap, map, winprops)
if (parseInt(navigator.appVersion) >= 3) { win.window.focus(); }
}
//  End -->