// JavaScript Document
function checkLoginForm()
{
	var check=true;
	if(checkField(document.getElementById("email"),"empty")==false)
	check=false;
	if(checkField(document.getElementById("password"),"empty")==false)
	check=false;
	
	if(check) submitFormOnFloat(document.forms['frmLogin'],"Checking....");
	return false;
}