function editable() {
	if(top.document.URL.substr(top.document.URL.length-15)=='admin/index.php' || top.document.URL.substr(top.document.URL.length-6)=='admin/' || top.document.URL.substr(top.document.URL.length-5)=='admin') {
		
		if(top.document.URL.substr(top.document.URL.length-15)=='admin/index.php')
			chemin=top.document.URL.substr(0,top.document.URL.length-9);

		if(top.document.URL.substr(top.document.URL.length-6)=='admin/')
			chemin=top.document.URL;

		if(top.document.URL.substr(top.document.URL.length-5)=='admin')
			chemin=top.document.URL+"/";
		
		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');
		}
	}
}