// Contact us Form verify
// Note:if the contact us form is a second form on the page you need to change the document.forms[0] value from 0 to 1

function verify(){
    if(document.forms[0].verifycode.value!="y521"){
        alert("Please enter the verification code");
        return false;
        }else{
		 document.myform.submit();
        return true;
        }
  }
 