<!--
function couleur(obj) {
     obj.style.backgroundColor = "#FFFFFF";
}

function check() {
	var msg = "";

		if (document.forder.Email.value != "")	{
		indexAroba = document.forder.Email.value.indexOf('@');
		indexPoint = document.forder.Email.value.indexOf('.');
		if ((indexAroba < 0) || (indexPoint < 0))		{
		document.forder.Email.style.backgroundColor = "#808080";
			msg += "Le Email est incorrect\n";
		}
	}
	else	{
		document.forder.Email.style.backgroundColor = "#808080";
		msg += "Veuillez saisir votre Email.\n";
	}

if (document.forder.Name.value == "")	{
		msg += "Veuillez saisir l'URL\n";
		document.forder.Name.style.backgroundColor = "#808080";
	}
	
if (document.forder.Comments.value == "")	{
		msg += "Veuillez saisir la description\n";
		document.forder.Comments.style.backgroundColor = "#808080";
	}	
	
if (document.forder.titre.value == "")	{
		msg += "Veuillez saisir le titre\n";
		document.forder.titre.style.backgroundColor = "#808080";
	}
	if (msg == "") return(true);
	else	{
		alert(msg);
		return(false);
	}
}
//-->
