
function OpenWin(url, width, height)
{
	ContentWindow = window.open(url,"_blank","toolbar=no,top=60,left=50,width=" + width + ",height=" + height + ",directories=no,status=no,scrollbars=yes,resizable=yes,menubar=no")
	
}
function Opennew(url,width,height)
{
	if(width==0&&height==0){
		width = screen.availWidth;
		height = screen.availHeight;
	}
	ContentWindow = window.open(url,"_blank","toolbar=yes,location=yes,width=" + width + ",height=" + height + ",directories=yes,status=yes,scrollbars=yes,resizable=yes,menubar=yes")
	
}
function UpdateConfirm()
{
	var UserName=document.userform.UserName.value;
	if(UserName=="")
	{
		alert("人员姓名必须输入！");
		return false;
	}
	if(confirm("提示：确定存盘吗？"))
		window.userform.submit();
}
function CheckSearch(obj){
	if (obj.SearchKey.value=="")
	{
		alert("请输入关键字查询！");
		obj.SearchKey.focus();
		return false;
	}
	return true;
}

