// Start of "checkContactUs" function. This validates all the fields in the Contact Us form.
function checkContactUs(login) 
{
if (login.Contact_Email.value == "")
{
alert("Kindly enter your Email.");
login.Contact_Email.focus();
return false;
}
if (login.Contact_Name.value == "")
{
alert("Kindly enter your Name.");
login.Contact_Name.focus();
return false;
}
if (login.Contact_Comments.value == "")
{
alert("Kindly enter your Comments.");
login.Contact_Comments.focus();
return false;
}
return true;
}
// End of "checkContactUs" function 

