/**
 * Productions Vic Pelletier
 * Humanima Découverte
 * Pierre-Luc Cyr
 * 2008-07-10
**/

function validerFormContribution()
{
	var valide = true;
	var msg = "";
	
	var nom = document.getElementById("nom");
	var texte = document.getElementById("texte");
	var courriel = document.getElementById("courriel");
		
	if(nom.value == "")
	{
		valide = false;
		msg += _REMP("Il doit obligatoirement avoir un nom pour l'émetteur du commentaire.\n", "Please insert a sender name.\n");
	}
	
	if(texte.value == "")
	{
		valide = false;
		msg += _REMP("Il doit obligatoirement avoir un texte pour le commentaire.\n", "Please insert a text for comment.\n");
	}
		
	if(courriel.value != "")
	{
		var courrielText = courriel.value;
		var indexAcom = courrielText.indexOf("@");
		
		if(courriel.value.indexOf("@") == -1)
		{
			valide = false;
			msg += _REMP("Le courriel entré n'est pas valide.\n", "Invalid email\n");
		}  
		else
		{
			if(courriel.value.indexOf(".", indexAcom) == -1)
			{
				valide = false;
				msg += _REMP("Le courriel entré n'est pas valide.\n", "Invalid email\n");
			}
		}
	}
	
	if(valide == true)
	{
		var frm_contribution = document.getElementById("frm_contribution");
		//alert("Votre commentaire est valide");
		frm_contribution.submit();
	}	
	else
		alert(msg);	
}

function flushImage()
{
	var fileInput = document.getElementById("image");
	fileInput.value = "";
}

function openContrib() {
	document.getElementById('reponse').style.display = 'block';
}
