<!-- Begin
function validate(){

if (document.contact.FirstName.value=="") {
alert("Oops! Please enter your FIRST NAME.")
document.contact.FirstName.focus()
return false
}


if (document.contact.LastName.value=="") {
alert("Oops! Please enter your LAST NAME.")
document.contact.LastName.focus()
return false
}

//if (document.contact.company.value=="") {
//alert("Oops! Please enter your COMPANY/ORGANISATION.")
//document.contact.company.focus()
//return false
//}

if (document.contact.email.value=="") {
alert("Oops! Please enter your EMAIL ADDRESS.")
document.contact.email.focus()
return false
}

if (isValidEmail(document.contact.email.value)==false){
	alert("Oops! Please enter a VALID EMAIL ADDRESS.")
	document.contact.email.focus()
	return false
}

if (document.contact.phone.value=="") {
alert("Oops! Please enter your PHONE NUMBER.")
document.contact.phone.focus()
return false
}

if (document.contact.State.value=="") {
alert("Oops! Please enter your STATE (eg. WA).")
document.contact.State.focus()
return false
}

//if (document.contact.country.value=="") {
//alert("Oops! Please select your COUNTRY.")
//document.contact.country.focus()
//return false
//}

if (document.contact.topic.value=="") {
alert("Oops! Please select the TOPIC of your message.")
document.contact.topic.focus()
return false
}

if (document.contact.message.value=="" && IsCommentReq == true) {
alert("Oops! Please enter your MESSAGE.")
document.contact.message.focus()
return false
}

if (document.contact.State.value!="WA") {
alert("It seems you are located outside Western Australia. At this point in time we are only able to supply our quality products to customers located in WA. Thank you for your understanding.")
document.contact.State.focus()
return false
}

return true
}
// End -->