<!--
function Openmap(){
win=window.open("map.html","win","width=514,height=502,scrollbars=0,resizable=1");
win.moveTo(0,0);
}

function OpenPV(){
win=window.open("pv.html","win","width=430,height=565,scrollbars=0,resizable=1");
win.moveTo(0,0);
}

// -->
<!--
function fImgWin(fUrl, fX, fY){
	view = window.open("","ImageViewWindow","toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=0,resizable=0,width="+fX+",height="+fY)
	view.document.open()
	view.document.write("<html><head><title>image</title></head><body bgcolor=#ffffff leftmargin=0 topmargin=0 marginwidth=0 marginheight=0>")
	view.document.write("<a href='javaScript:window.close();'><img src='"+fUrl+"'  width="+fX+" height="+fY+" border=0></a></body></html>")
	view.document.close()
}
// -->