// JavaScript Document
function LogonChk(){		
	if(fLogon.txtUser.value=="" || fLogon.txtPwd.value==""){
		alert("用户名和密码都不能为空，请重新输入用户名和密码！");			
		fLogon.txtUser.focus();			
		return false;
	}
	else{
		return true;
	}		
		
}	
function SchChk(thisform){		
	if(thisform.schtxt.value=="" || thisform.schtxt.value=="请输入搜索关键字"){
		alert("输入内容不能为空！");			
		thisform.schtxt.focus();			
		return false;
	}
	else{
		return true;
	}		
		
}	
function wz(filename,width,height,windowname,scrollbars)
{
	var str
	str="height=" + height + ",width=" + width + ",top=100,left=100,resizable=no,status=yes,toolbar=no,menubar=no,location=no,scrollbars=" + scrollbars + ",status=no";
	childWin=window.open(filename,windowname,str);
	childWin.focus();
}
