
	NewsletterSubscribe.prototype = new Form ();

	function NewsletterSubscribe (sId) {
		
		this.id = sId;
		
		OnLoadObject (this);
		
	}
	
	NewsletterSubscribe.prototype.valuesCheck = function () {
		if (this.IsEmpty (this.form.field140.value)) 
			return this.fieldError (this.form.naam, 'Vul uw naam in a.u.b.');

		
		if (this.IsEmpty (this.form.field5.value))
			return this.fieldError (this.form.adres, 'Vul uw e-mailadres in a.u.b.');
		
		return true;
		
	}
	