var remname={
	'#button1':function(obj)//
	{	
		obj.onclick=function(){
		if(document.getElementById("Name").value=='')
			{
				alert('请输入要查询的域名');
   return false;

			}	
			var sw=parseInt(parseInt(screen.width)/2);
			var sh=parseInt(parseInt(screen.height)/2);
			var parentDivObj=document.getElementById("loading");
			parentDivObj.style.top=(sh-180)+"px";
			parentDivObj.style.left=(sw-150)+"px";
			parentDivObj.style.display='';
			var div1=document.getElementById("sDivInfo");
			div1.style.height=(parseInt(screen.height)-160)+"px";
			div1.style.width=(parseInt(screen.width)-25)+"px";
			div1.style.display='';
			obj.blur();
			document.getElementById("form1").submit()
		}
		
	}	
}
Behaviour.register(remname);  
