function verifyContactMessage()
	{
	 if(contact.name.value == "" || contact.email.value == "" || contact.message.value == "")
		{
		 alert("Completati toate campurile!")
		 return false;
		}else{
			  return true;
			 }
	}