// JavaScript Document
window.addEvent('domready', function() {
	var animatie = new Fx.Morph('scroller', {duration: '1000', transition: Fx.Transitions.Expo.easeOut});


$('btn_send_form').addEvent('click',function(e) {
		e = new Event(e).stop();
		var urlComm = 'trimite_mesaj.php';
		var valTest = $('telefon').value;
		
		if (valTest!='') {
		var req2 =new Request({
				url: urlComm,
				method: 'post',
				data: $('form_contact'),
				onSuccess: function() {
					alert('Mesajul dumneavoastra a fost trimis');
				}
			});
			req2.send();
		} else {
			alert('Va rugam completati numarul de telefon');	
			
		}
		

 });

});

function voida() {

	

}




