<!--
function killErrors() { 
return true; 
} 
window.onerror = killErrors; //Hide JavaScript Errors

function makevisible(cur,which,alpha){
if (which==0)
cur.filters.alpha.opacity=100
else
cur.filters.alpha.opacity=alpha
}


function CheckUloginForm()
{
	if (document.Ulogin.username.value.length == 0) {
		alert("请输入用户名.");
		document.Ulogin.username.focus();
		return false;
	}
	if (document.Ulogin.password.value.length == 0) {
		alert("请输入密码");
		document.Ulogin.password.focus();
		return false;
	}
	if (document.Ulogin.Cnbbr_RndCode.value.length == 0) {
		alert("请输入验证码.");
		document.Ulogin.Cnbbr_RndCode.focus();
		return false;
	}
	return true;
}

function MM_openBrWindow(theURL,winName,features) { //v2.0
  window.open(theURL,winName,features);
}
// --> 
