function verifyContactFrm(frm) {
    if( frm.full_name.value.length == 0 ) {
	alert('Please enter your name..');
	frm.full_name.focus();
	return false;
    } else if( frm.email.value.length == 0 || frm.email.value.indexOf('@') < 1 || frm.email.value.indexOf('.') < 3 ) {
	alert('Please enter your email address..');
	frm.email.focus();
	return false;
    } else if( frm.phone.value.length < 10 || frm.phone.value.search(/^[0-9\-_\. ]+$/) == -1 ) {
	alert('Please enter your phone number..');
	frm.phone.focus();
	return false;
    } else if( frm.msg.value.length == 0 ) {
	alert('How can we help you?');
	frm.msg.focus();
	return false;
    }
    return true;
}

var idx = -1;
if( (idx = window.location.search.indexOf('contact_result=')) != -1 ) {
    idx += 15;
    var eidx = window.location.search.indexOf('&',idx);
    var contact_result = ((eidx == -1)?window.location.search.substr(idx,window.location.search.length):window.location.search.substring(idx,eidx));
    alert(unescape(contact_result.replace(/\+/g,' ')));
}
