function postMe(form)
{
	url = form.action;
	data = $(form).serialize();
	
	$.post(url,data,function(html)
		 {
			 $('#appointmentDiv').html(html);
		 })
}

function postMeFeed(form2)
{
	url = form2.action;
	data = $(form2).serialize();

	$.post(url,data,function(ht)
		 {
			 $(form2).replaceWith(ht);
		 })
}

function postMeNewsl(form3)
{
	url = form3.action;
	data = $(form3).serialize();
	
	$.post(url,data,function(html3)
		 {
			 $(form3).replaceWith(html3);
		 })
}

function postMeContacts(form4)
{
	url = form4.action;
	data = $(form4).serialize();
	
	$.post(url,data,function(html4)
		 {
			 $(form4).replaceWith(html4);
		 })
}

