﻿function validAll(){
	document.frm.reset();
	validField(document.frm.email, "reqEmail", "电子邮件");
	validField(document.frm.password, "reqPassword", "密码");	
}


function checkAll(){

	var eMsg="";
	var isOK=true;

	if(document.frm.email.value==""){
		eMsg += "电子邮件必填项目<br>";
	}
	if(document.frm.password.value==""){
		eMsg += "密码必填项目<br>";
	}

	if(eMsg !=""){
		eMsg = "<b>以下项目必填</b>:<br>" + eMsg;
		//goto top
		isOK = false;


if(document.getElementById('abox')!=null){
document.getElementById('ibox').removeChild(document.getElementById('abox'));	
}

var newdiv = document.createElement('div');
  var divIdName = 'abox';
  newdiv.setAttribute('id','abox');
  newdiv.setAttribute('name','abox');	
  newdiv.setAttribute('class','alert');	
  newdiv.setAttribute('className','alert');	
  newdiv.innerHTML = eMsg;
document.getElementById('ibox').appendChild(newdiv);
document.location.href="#top";
	} else {
	isOK=true;
document.getElementById('ibox').removeChild(document.getElementById('abox'));

	}
	return isOK;

}

function validField(f, msg, n){

	if(f.value==""){
		f.className="man";
		document.getElementById(msg).innerHTML = n + "必填项目";
	}else{
		f.className="normal";
		document.getElementById(msg).innerHTML = n + "被填";
	}

}