function sendContactRequest () {
	if (
		v1.validate() &&
		v2.validate() && 
		v3.validate() && 
		v4.validate() && 
		v5.validate() && 
		v6.validate()
	) {
		$.post("/forms/contact/",
			{
				name:$("#Name").val(),
				Address:$("#Address").val(),
				City:$("#City").val(),
				Country:$("#Country").val(),
				Email:$("#Email").val(),
				Comments:$("#fComments").val(),
				subject: $("#subject").val()
			},
			function(data){
		   		$("#form").hide();
				$("#response").fadeIn();
			}
		 );
	}
	/**/
}

String.prototype.trim = function() {
	return this.replace(/^\s+|\s+$/g,"");
}