function menuOver(id)
	{
	getElement(id).src =  getElement(id).src.replace(id, id + "_over");
	}

function menuOut(id)
	{
	getElement(id).src =  getElement(id).src.replace(id + "_over", id);
	}

function checkDon(formulaire)
	{
	if (formulaire.name.value == "")
		{
		alert("Vous devez entrer votre nom")
		formulaire.name.focus();
		return(false);
		}

	return(true);
	}

function getElement(elementID)
	{
    if (document.getElementById)
         return(document.getElementById(elementID));
    else if (document.layers)
        return(document.layers[elementID]);
    else if (document.all)
         return(document.all[elementID]);
	}

