function check()
    {
        if ((document.frmContacts.usrName.value == "") || (document.frmContacts.usrAddress.value  == "") || (document.frmContacts.usrNo.value  == "") || (document.frmContacts.about.value  == "") || (document.frmContacts.contact.value  == "") || (document.frmContacts.msg.value  == ""))
        {
            alert("You have not filled in all required fields.");
            return false;
        }
        else {
            alert("Thank You for contacting us, we will process your request as soon as possible !");
			document.frmContacts.submit();
        }
    }
  

