function alternativePost(){
	wdata = "name="+escape(document.getElementById("nameUser_m").value)+"&email="+document.getElementById("emailUser_m").value+"&describe="+escape(document.getElementById("describeUser_m").value);
	
	$.ajax({
   type: "POST",
   url: "http://acrylicaquarium.ru/rfp",
   data: wdata,
   contentType: "application/x-www-form-urlencoded;chatset=CP1251",
   dataType: "html",
   success: function(html){
     alert( html );
   }
 });
}
