function editable() {
	if(top.document.URL.substr(top.document.URL.length-24)=='admin/gestion_textes.php') {
		
		chemin=top.document.URL.substr(0,top.document.URL.length-18);
		
		if(document.getElementById('editeur')) {
			document.getElementById('editeur').contentEditable="true";
			document.getElementById('editeur').style.borderWidth='1px';
			window.open(chemin+'outils.php?rubrique=editeur&adresse='+document.URL,'admin_outils');
		}
		else {
			window.open(chemin+'outils.php?rubrique=editeur','admin_outils');
		}
	}
}


