

function evalLogin(theForm)
{
	if(theForm.email.value == '' || theForm.pw.value == '')
	{
		alert('Please enter your email and password');
		return false;
	}
	else
	{
		return true;
	}
}