// Fonction d'ajout des favoris
	function ajoutFavoris()
	{
		if (window.sidebar) { // Mozilla Firefox Bookmark
			window.sidebar.addPanel("NetCahier", "http://www.netcahier.fr","");
		} else if( window.external ) { // IE Favorite
			window.external.AddFavorite( "http://www.netcahier.fr", "NetCahier");
		} else if(window.opera && window.print) { // Opera Hotlist
			return true;
		}
	}


// Fonction d'ouverture de pop-up
	function popup(page, titre, hauteur, largeur)
	{
		window.open(page, titre, 'height='+hauteur+', width='+largeur+', top=100, left=100, toolbar=no, menubar=yes, location=no, resizable=yes, scrollbars=no, status=no');
		return false;
	}