function checkForm(thisForm)
{
	if (thisForm.customer_email.value == "")
	{
		alert ("Please enter your email");
		thisForm.customer_email.focus();
		
		return false;
	}
	
	if (thisForm.customer_password.value == "")
	{
		alert ("Please enter your password");
		thisForm.customer_password.focus();
		
		return false;
	}
	
	return true;
}