<!--
function _CF_hasValue(obj, obj_type)
	{ if (obj_type == "TEXT" || obj_type == "PASSWORD")
		{ if (obj.value.length == 0) 
      			return false;
    	  else 	return true;
		}
	 
	 else if (obj_type == "TEXTAREA")
		{ if (obj.value.length > 2999) 
      			return false;
    	  else	return true;
    	}
		
	 else if (obj_type == "SELECT")
		{ if (obj.options[0].selected)
			return false;
		else
	       	return true;
		}
	}

function  _CF_checkContactBilling(_CF_this)
    { if  (!_CF_hasValue(_CF_this.contact_name, "TEXT" )) 
        { if  (!_CF_onError(_CF_this, _CF_this.contact_name, _CF_this.contact_name.value, "Please enter your Name"))
            { _CF_this.contact_name.focus(); return false; }
        }
		
	if  (!_CF_hasValue(_CF_this.webtolead_email1, "TEXT" )) 
        { if  (!_CF_onError(_CF_this, _CF_this.webtolead_email1, _CF_this.webtolead_email1.value, "Please enter your E-mail Address."))
            {  return false;  }
        }			
	  	
	  
	if (!isEmail(_CF_this.webtolead_email1.value))
  	{  alert("Please enter a complete E-mail in the form: yourname@yourdomain.com");
    	 _CF_this.webtolead_email1.focus();
    	 return (false);
  	}
		
	  if  (!_CF_hasValue(_CF_this.product_area, "SELECT" )) 
        { if  (!_CF_onError(_CF_this, _CF_this.product_area, _CF_this.product_area.value, "Please select a Product Area."))
            {  return false;  }
        }
		
	  
	  if (_CF_this.product_area.options[1].selected) 
	    { if  (!_CF_hasValue(_CF_this.domain_name_c, "TEXT" ))
	        { if  (!_CF_onError(_CF_this, _CF_this.domain_name_c, _CF_this.domain_name_c.value, "Please enter your Domain Name."))
	            { return false; }
	        }
	    }	  
	  
	  if  (!_CF_hasValue(_CF_this.description, "TEXTAREA" )) 
        { if  (!_CF_onError(_CF_this, _CF_this.description, _CF_this.description.value, "Please tell us your concer under 3000 characters."))
            {  return false; }
        }
	
	if  (!_CF_hasValue(_CF_this.captchatext, "TEXT" )) 
    { 	if  (!_CF_onError(_CF_this, _CF_this.captchatext, _CF_this.captchatext.value, "Please enter the characters in the image below."))
            { return false; }
    }
		
	  return true;
    }
//-->