function validateCustomerRegistration(){

	if (document.customerrego.FirstName.value=="") {
	alert("Oops! Please enter your FIRST NAME.")
	document.customerrego.FirstName.focus()
	return false
	}
	
	if (document.customerrego.LastName.value=="") {
	alert("Oops! Please enter your LAST NAME.")
	document.customerrego.LastName.focus()
	return false
	}
	
	if (document.customerrego.EmailAddress.value=="") {
	alert("Oops! Please enter your EMAIL ADDRESS.")
	document.customerrego.EmailAddress.focus()
	return false
	}
	
	if (document.customerrego.PhoneNumber.value=="" && document.customerrego.MobileNumber.value=="") {
	alert("Oops! Please enter your PHONE NUMBER or MOBILE NUMBER.")
	document.customerrego.PhoneNumber.focus()
	return false
	}
	
	if (document.customerrego.PostAddress.value=="") {
	alert("Oops! Please enter your BILLING ADDRESS.")
	document.customerrego.PostAddress.focus()
	return false
	}
	
	if (document.customerrego.PostCity.value=="") {
	alert("Oops! Please enter your SUBURB.")
	document.customerrego.PostCity.focus()
	return false
	}
	
	if (document.customerrego.PostStateOrProvince.value=="") {
	alert("Oops! Please enter your STATE.")
	document.customerrego.PostStateOrProvince.focus()
	return false
	}
	
	if (document.customerrego.PostPostalCode.value=="") {
	alert("Oops! Please enter your POSTCODE.")
	document.customerrego.PostPostalCode.focus()
	return false
	}
	
	if (document.customerrego.PostCountry.value=="") {
	alert("Oops! Please enter your COUNTRY.")
	document.customerrego.PostCountry.focus()
	return false
	}
	
	if (document.customerrego.Username.value=="") {
	alert("Oops! Please enter your USERNAME.")
	document.customerrego.Username.focus()
	return false
	}
	
	if (document.customerrego.Password.value=="") {
	alert("Oops! Please enter your PASSWORD.")
	document.customerrego.Password.focus()
	return false
	}

	document.customerrego.send.value = "Saving Details...";
	document.customerrego.send.disabled = true;
	
return true
}

