function validatecontact(frmContactUs) {

if (document.frmContactUs.ContactEmail.value == '') {
alert ("Please enter your E-mail address.");
document.frmContactUs.ContactEmail.focus();
return false;
}

if (document.frmContactUs.ContactComment.value == '') {
alert ("Please enter your Comments.");
document.frmContactUs.ContactComment.focus();
return false;
}


return true;
}
