	function validate_form()
	{
		var mesaj = ""
		
		nume = $('#nume').val();
		prenume = $('#prenume').val();
		telefon = $('#prenume').val();
		subiect = $('#subiect').val();
		mesaj_contact = $('#mesaj_contact').val();
		
		if(nume = "")
			mesaj +="Introduceţi numele!\n";
			
		if(prenume == "")
			mesaj +="Introduceţi prenumele!\n";
			
		if(telefon == "")
			mesaj +="Introduceţi un număr de telefon!\n";
			
		if(subiect == "")
			mesaj +="Introduceţi subiectul mesajului!\n";
			
		if(mesaj_contact == "")
			mesaj +="Introduceţi mesajul!\n";	
		
			
		if(mesaj != "")	
		{
			alert(mesaj);
			return false;
		}
			
		
		return true;
	}

	
	