		function validateForm()
		{
			document.getElementById('nume').style.backgroundColor = '#E6FF9A';
			document.getElementById('nume').style.borderColor = '#A9D34D';
			document.getElementById('email').style.backgroundColor = '#E6FF9A';
			document.getElementById('email').style.borderColor = '#A9D34D';
			document.getElementById('mesaj').style.backgroundColor = '#E6FF9A';
			document.getElementById('mesaj').style.borderColor = '#A9D34D';
			document.getElementById('subiect').style.backgroundColor = '#E6FF9A';
			document.getElementById('subiect').style.borderColor = '#A9D34D';
			
			if (document.forms["ContactForm"]["nume"].value==null || document.forms["ContactForm"]["nume"].value=="")
  			{
				document.getElementById('nume').style.borderColor = '#ff0000';
				document.getElementById('nume').style.backgroundColor = '#FFCCCC';
  				alert("Numele trebuie sa fie completat!");
				document.getElementById('nume').focus();
  				return false;
  			}
			else if (document.forms["ContactForm"]["nume"].value.length < 5 )
			{
				document.getElementById('nume').style.borderColor = '#ff0000';
				document.getElementById('nume').style.backgroundColor = '#FFCCCC';
				alert("numele trebuie sa aiba minim 5 caractere!");
				document.getElementById('nume').focus();
  				return false;
			}
			else if (document.forms["ContactForm"]["email"].value.indexOf("@")==-1 )
			{
				document.getElementById('email').style.borderColor = '#ff0000';
				document.getElementById('email').style.backgroundColor = '#FFCCCC';
				alert("Introduceti corect adresa de email!");
				document.getElementById('email').focus();
  				return false;
			}
			else if (document.forms["ContactForm"]["subiect"].value==null || document.forms["ContactForm"]["subiect"].value=="")
  			{
				document.getElementById('subiect').style.borderColor = '#ff0000';
				document.getElementById('subiect').style.backgroundColor = '#FFCCCC';
  				alert("Trebuie sa completati campul subiect!");
				document.getElementById('nume').focus();
  				return false;
  			}
			else if (document.forms["ContactForm"]["mesaj"].value==null || document.forms["ContactForm"]["mesaj"].value=="")
  			{
				document.getElementById('mesaj').style.borderColor = '#ff0000';
				document.getElementById('mesaj').style.backgroundColor = '#FFCCCC';
  				alert("Trebuie sa introduceti un mesaj!");
				document.getElementById('mesaj').focus();
  				return false;
  			}
			else if (document.forms["ContactForm"]["mesaj"].value.length < 10 )
			{
				document.getElementById('mesaj').style.borderColor = '#ff0000';
				document.getElementById('mesaj').style.backgroundColor = '#FFCCCC';
				alert("mesajul trebuie sa aiba minim 10 caractere!");
				document.getElementById('mesaj').focus();
  				return false;
			}
		}
