		// Fonction de stockage des scripts à charger
		FuncOL = new Array();
		function StkFunc(Obj) {
			FuncOL[FuncOL.length] = Obj;
		}
			
		// Execution des scripts au chargement de la page
		window.onload = function() {
			for(i=0; i<FuncOL.length; i++)
				{FuncOL[i]();}
		}

			window.onload = function load(){
				initfriends();
			}

			//window.onload=initfriends;
				function initfriends(){
					document.getElementById('friends').style.display = 'none';
				}
				function montrefriends(){
					var d = document.getElementById('friends');
					if (d.style.display == 'none')
						d.style.display = 'block';
					else
						d.style.display = 'none';
				}
		 
		 

			<!--
			function verif_formulaire()
			{
			 if(document.envoie.nom_em.value == "")  {
			   alert("Saisissez votre nom! Enter your name!");
			   document.envoie.nom_em.focus();
			   return false;
			  }
			 if(document.envoie.nom_re.value == "")  {
			   alert("Saisissez le nom de votre ami! Enter your friend's name!!");
			   document.envoie.nom_re.focus();
			   return false;
			  }
			 if(document.envoie.email_re.value == "")  {
			   alert("Saisissez le mail de votre ami! Enter your friend's name!!");
			   document.envoie.email_re.focus();
			   return false;
			  }
			 if(document.envoie.email_em.value == "")  {
			   alert("Saisissez votre mail! Enter your mail!");
			   document.envoie.email_em.focus();
			   return false;
			  }
			 } 
			//-->

