// JavaScript Document
function  _CF_contactform(_CF_this){
	//Check for your name
	if  (!_CF_hasValue(_CF_this.name, "TEXT" )) {
		if  (!_CF_onError(_CF_this, _CF_this.name, _CF_this.name.value, "Please enter your name.")){ 
			_CF_this.name.focus(); _CF_this.name.select();
			return false; 
		}
    }

	//Check for your email	
	if  (!_CF_hasValue(_CF_this.from_email_address, "TEXT" )) {
        if  (!_CF_onError(_CF_this, _CF_this.from_email_address, _CF_this.from_email_address.value, "Please enter your email address.")){
			_CF_this.from_email_address.focus(); _CF_this.from_email_address.select();
			return false; 
		}
    }
	
	//Check CAPTCHA field
	if  (!_CF_hasValue(_CF_this.keystring, "TEXT")){ 
		if  (!_CF_onError(_CF_this, _CF_this.keystring, _CF_this.keystring.value, "Enter the letters as they are shown in the image.")){ 
			_CF_this.keystring.focus(); _CF_this.keystring.select();return false;
		}
	}

    return true;
}

