function sendContactForm(m)
{
	if (isFormValid())
	{
		if (m == 0)
		{
			contact_url = "../html/modules/contact/ajax.php";	
		}
		else
		{
			contact_url = "../modules/contact/ajax.php";	
		}
		params = "method=sendContactForm&" + Form.serialize($("formular"));
		var myAjax = new Ajax.Request(contact_url, 
			{ 
				method: "post",
				postBody: params,
				onComplete: function(r)
				{
					$("form_content").innerHTML = r.responseText;
				}
			}
		);
	}
}