﻿// JScript 文件

var div_name="div_map_hw";
var source_t;
var runner;


function openW(sh){
//win_a=window.showModalDialog(sh,window,'scrollbars=no;resizable=no;help=no;status=no;center=yes;dialogHeight=610px;dialogWidth=800px');
//	if (win_a!=null&&win_a!='undefined'){
//		document.getElementById(div_name).style.visibility="hidden";
//		source_t.value=win_a;
//		try_sub();
//	}
//	clearTimeout(runner);
    showPopup(sh, 800, 610, "城市");
}
function try_sub(){
		if(document.addform2.city.value!=""&&document.addform2.city3.value!=""){
	   		document.addform2.submit();
   		}
}
function rt(str){
	if (str!=null&&str!='undefined'){
		document.getElementById(div_name).style.visibility="hidden";
		source_t.value=str;
	}
	runner.clearTimout();
	try_sub();
}
function city1(obj){
		source_t=obj;
		runner=setTimeout('hide_map()',120000);
		document.getElementById(div_name).style.visibility="visible";
		document.getElementById(div_name).style.top=event.y+25;
		document.getElementById(div_name).style.left=event.x-150;
}
function city2(obj){
		source_t=obj;
		runner=setTimeout('hide_map',5000);
		document.getElementById(div_name).style.visibility="visible";
		document.getElementById(div_name).style.top=event.y+25;
		document.getElementById(div_name).style.left=event.x-150;
		
}
function hide_map(){
		document.getElementById(div_name).style.visibility="hidden";
}
