// JavaScript Document
<!--
//地図の別ウインドウ
function maido(NUM,gFILE){
	newWindow=open("","_blank","width=510,height=580,toolbar=yes,scrollbars=yes,menubar=yes,left=0,top=0,resizable=yes");
	newWindow.document.write("<html>")
	newWindow.document.write("<head>")
	newWindow.document.write("<title>"+NUM+"</title>")
	newWindow.document.write("<meta http-equiv='Content-Type' content='text/html; charset=Shift_JIS'>")
	newWindow.document.write("</head>")
	newWindow.document.write("<body>")
	newWindow.document.write("<IMG SRC="+gFILE+" WIDTH='470' HEIGHT='527' ALIGN='BOTTOM' BORDER='0'>")
	newWindow.document.write("<form><input type='button' value='閉じる' onClick='self.close()'>	</form>")
	newWindow.document.write("</body>")
	newWindow.document.write("</html>")
	newWindow.document.close()
}
//-->
