<!--
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_checkPayment(_CF_this)
    { 
		if  (!_CF_hasValue(_CF_this.DomainName, "TEXT" )) 
	        { if  (!_CF_onError(_CF_this, _CF_this.DomainName, _CF_this.DomainName.value, "Please enter a Domain Name"))
	            {  return false;  }
	        }	
		if  (!_CF_hasValue(_CF_this.EmailAddress, "TEXT" )) 
	        { if  (!_CF_onError(_CF_this, _CF_this.EmailAddress, _CF_this.EmailAddress.value, "Please enter your Email Address"))
	            {  return false;  }
	        }	
		if  (!_CF_hasValue(_CF_this.LastName, "TEXT" )) 
	        { if  (!_CF_onError(_CF_this, _CF_this.LastName, _CF_this.LastName.value, "Please enter your Last Name"))
	            {  return false;  }
	        }	
		if  (!_CF_hasValue(_CF_this.ZipCode, "TEXT" )) 
	        { if  (!_CF_onError(_CF_this, _CF_this.ZipCode, _CF_this.ZipCode.value, "Please enter your Zip Code"))
	            {  return false;  }
	        }	
	return true;
}
//-->