function checkForm(){
	if(!validate({id:"Username"})) return false;
	if(!validate({id:"Password"})) return false;
	return true;
}

function checkPwReq(){
	if(!validate({id:"email",type:"email"})) return false;
	return true;
}