function chkLogin(strId){
	if(document.getElementById("email"+strId).value.length == 0){
	  alert("Please enter your Email Address");
	  document.getElementById("email"+strId).focus();
	  return false;
	}
	if(document.getElementById("pass"+strId).value.length == 0){
	  alert("Please enter your Password");
	  document.getElementById("pass"+strId).focus();
	  return false;
	}
	if(validateEmail(document.getElementById("email"+strId).value,"Email Address")){
		document.getElementById("login"+strId).submit();
	}else{
	  document.getElementById("email"+strId).select();
	  document.getElementById("email"+strId).focus();
	  return false;
	}
}