function checkLoad() {
	if(navigator.userAgent.indexOf("MSIE")==-1)
		var thisform=document.loadForm;
	else
		var thisform=loadForm;
			
	if (Jtrim(thisform.username.value)=='') {
                window.alert ("请输入您的用户名 ！")
		thisform.username.focus();
                return false;
        }
        
        if (Jtrim(thisform.password.value)=='') {
                window.alert ("请输入您的密码 ！")
		thisform.password.focus();
                return false;
        }
	return true;
}