//function window.onresize()
//{
//    var h = document.documentElement.clientHeight
//          - document.all.divToolBar.offsetHeight
//          - document.all.divStatusBar.offsetHeight          
//    if(h > 0) document.all.divMain.style.height = h;   

//}

//function window.onload()
//{        
//    window.onresize();       
//}

//最大化窗口
function Maxwindow()
{
 var aw = screen.availWidth;
 var ah = screen.availHeight;
 window.moveTo(0, 0);
 window.resizeTo(aw, ah);
}

//回车换行
function onkeydowns()
{
    try{
        if(event.keyCode==13)
        {
            if(document.activeElement.type=="password"||document.activeElement.type=="text"||document.activeElement.type=="select-one"||document.activeElement.type=="checkbox"||document.activeElement.type=="radio")
            {
                 event.keyCode=9;
			}
         }
	}
   catch(Exception){}
}

