	
function result_show()
	{
	
	$.ajax({
	  type: "POST",
	  url: "votes.php",
	  data: {qote: $(":radio[name=qote]").filter(":checked").val()},
	  success: function(msg){
	    $("#votes").html(msg)
	  }
	});
	$("#votes").html('<center><img src="pictures/site/ajax-loader.gif"></center>');
	}
function order_email(type)
	{
	
	$.ajax({
	  type: "POST",
	  url: "email_send.php",
	  data: {email: $("#email").val(), type: type},
	  success: function(msg){
	    $("#result_email").html(msg)
	  }
	});
	$("#result_email").html('<center><img src="pictures/site/ajax-loader.gif"></center>');
	}
