<!--
	// protection encapsulation
	if ( window != top )
	{
		top.location=window.location;
	}

	// A utiliser pour les pages non destinées à être visualisées
	function retour() {
		top.location.replace("http://www.L2TC.com/index.php");
	}

	// Fonction rollover couleur
	function changeColor(objet, mode) {
		if ( mode == 0 ) {
			/*objet.bgColor='darkviolet';*/
			objet.style.backgroundImage="url(images/itemMenuViolet.gif)";
		} else {
			/*objet.bgColor='green';*/
			objet.style.backgroundImage="url(images/itemMenuVert.gif)";
		}
	}
//-->