function submitForm()
{
	frm = document.forms.frmContactUs;

    if(frm.captcha.value == '') { 
        alert("Please type the characters you see in the picture, or click on the speaker and type the numbers you hear."); 
        frm.captcha.focus();
        return false ; 
    }
		
    return true;
}


