<!--
function _CF_hasValue(obj, obj_type)
{   if (obj_type == "TEXT" || obj_type == "PASSWORD")
		{ if (obj.value.length == 0) 
      		return false;
    	  else 
      		return true;
    	}	
}
		
function  _CF_checkContactForm(_CF_this)
{   if  (!_CF_hasValue(_CF_this.Email, "TEXT" )) 
    { if  (!_CF_onError(_CF_this, _CF_this.Email, _CF_this.Email.value, "E-mail is Required."))
		{ return false;	}
	}
	  
	if (!isEmail(_CF_this.Email.value))
  	{  alert("Please enter a complete E-mail in the form: yourname@yourdomain.com");
    	 _CF_this.Email.focus();
    	 return (false);
  	}

	
	if  (!_CF_hasValue(_CF_this.uword, "TEXT" )) 
        { if  (!_CF_onError(_CF_this, _CF_this.uword, _CF_this.uword.value, "Please enter the text from the image as it is shown."))
            { return false;  }        
		}
	
	var uword = hex_md5(document.getElementById(jfldid).value);
	if (uword==cword[anum-1]) { return true; }
	else { alert("ERROR: Please enter the text from the image as it is shown."); 
			document.getElementById(jfldid).focus();
			return false;
		  }
 
	return true;
}
 
//-->


