<!-- 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. NSW).")
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.strCAPTCHA.value=="") {
alert("Oops! Please enter the SECURITY CAPTCHA CODE.")
document.contact.strCAPTCHA.focus()
return false
}

//if (document.contact.strCAPTCHA.value!=Sess) {
//alert("Oops! Please enter the correct SECURITY CAPTCHA CODE.")
//document.contact.strCAPTCHA.focus()
//return false
//}


return true
}
// End -->