Validation.prototype.setMessageStrings = function()	{

	this.msg_empty	       = "Field <field> is not filled in ";
	this.msg_email	       = "Field <field> is not formatted properly (text@text.com)" ;
	this.msg_number	       = "Field <field> is not a valid number";
	this.msg_amount        = "Field <field> is not a valid amount.\nThe format is 99999.99";
	this.msg_telephone     = "Field <field> is not a valid telephonenumber";
	this.msg_document      = "Please attach a document of type .doc, .txt, .rtf or .pdf";
	this.msg_datecompare   = "Date <field2> can not be prior to date <field1>.";
	this.msg_length        = "Field <field> contains more than "+this.length_textarea+" characters";
	this.msg_image         = "Field <field> is not a valid document";
	this.msg_sofinr        = "Field <field> is not a valid social security number";
	this.msg_banknr        = "Field <field> is not a valid bankaccount number";
	this.msg_postcode      = "Field <field> is not a valid postal code";
	this.dateFormat        = "dd-mm-yyyy";
	this.msg_date_format   = "Field <field> is not properly formatted ("+this.dateFormat+")";
	this.msg_date		   = "The year cannot be before 1900";
	this.msg_range         = "<field> must be more than <min> and less than <max>";
	this.msg_range_min     = "<field> can not be less than <min>";
	this.msg_range_max     = "<field> can not exceed <max>";	
	this.msg_url		   = "<field> is not a valid URL";
}

validatie 		    = new Validation();
