function subscribe_newsletter() {
	jQuery.ajax({
		type: "POST",
		data: jQuery("#subscribe_newsletter").serialize(),
		url: "/utile/subscribe_newsletter/",
		beforeSend: function() {
			jQuery("#subscribe_newsletter_response").html("Va rugam asteptati...");
		},		
		success: function(msg) {
			
			if(msg == 'success') {
				jQuery("#subscribe_newsletter_response").html('<span class="success">Emailul a fost trimis cu succes si o sa puteti primi alerte cu ofertele noastre.</span>');
				jQuery("#subscribe_newsletter_input").attr('value', '');
			} else if(msg == 'duplicate_email') {
				jQuery("#subscribe_newsletter_response").html('<span class="success">Emailul dvs a fost deja inregistrat si o sa puteti primi alerte cu ofertele noastre.</span>');
			} else if(msg == 'email_error') {
				jQuery("#subscribe_newsletter_response").html('<span class="error">Emailul este invalid, va rugam reincercati.</span>');
			} else {
				jQuery("#subscribe_newsletter_response").html('<span class="error">Emailul nu a fost inregistrat, va rugam sa incercati mai tarziu.</span>');
			}
		}
    });
}


function programare_online() {
	jQuery.ajax({
		type: "POST",
		data: jQuery("#programare_online").serialize(),
		url: "/utile/programare_online/",
		beforeSend: function() {
			jQuery("#programare_online_response").html("Va rugam asteptati...");
		},
		success: function(msg) {

			jQuery("#programare_online_response").html(msg);
		}
    });
}
