$(document).ready(function(){
	$('#download_brochure').click(function(){
		var rege = /^([A-Za-z0-9_\-\.])+\@([A-Za-z0-9_\-\.])+\.([A-Za-z]{2,4})$/;
		if (($('#download_brochure_form input[type=text]').val()!='')||(rege.test($('input#email').val()))) {
		
		    $.post(
			    'inc/brochure.php', 
			    {
				    nume:$('#nume').val(),
				    nume_companie:$('#nume_companie').val(),
				    email:$('#email').val()
			    },
			
			    function(data) {
				    $('#download_brochure_form').fadeOut(2000, function(){
					    $('#status_message').html(data);	
					    $('#status_message').fadeIn(1000);
					    window.location=('inc/download.php');
				    });
			    }
		    );
        } else {
            alert('Va rugam sa completati toate campurile corect.');
        }
	});
});
function back_to_form(){
	$('#status_message').fadeOut(2000,function(){
			$('#download_brochure_form').fadeIn(1000);
	});
}

