/*showMessageChamp
effacerTextChamp*/


var timer = "";

function montre(id) {
	 cachetout();

	 if (document.getElementById) {
		 document.getElementById(id).style.display="block";
	 } else if (document.all) {
		 document.all[id].style.display="block";
	 } else if (document.layers) {
		 document.layers[id].display="block";
	 }
	 
	 clearTimeout(timer);
}

function cache(id) {
	
	if (document.getElementById) {
		document.getElementById(id).style.display="none";
	} else if (document.all) {
		document.all[id].style.display="none";
	} else if (document.layers) {
		document.layers[id].display="none";
	}
	   
	timer=setTimeout("cache(id)",3000);
	
}

function cachetout() {
	cache('smenuprincipal1');
	cache('smenuprincipal2');
	cache('smenuprincipal3');
}

/* Demande d'affichage d'une fenêtre au niveau du front office */
function ouvrirFenetrePlan(url, nom) {
   window.open(url, nom, "width=520,height=500,scrollbars=yes, status=yes");
}


/*
	ED : extraite de menu_services.jsp le 19/10/05
	Auteur : JSS ?

*/
function activerService() {

	var index = window.document.FORM_SERVICE.selectservices.selectedIndex;
	if( index == 0)
		return;
	var url=window.document.FORM_SERVICE.selectservices.options[index].value;

	/* Analyse target */

	var indexTarget = url.indexOf(':');
	var target =  url.substring(0,indexTarget);
	url=  url.substring(indexTarget + 1);
	if( target == "")
		window.location.href=url;
	else
		window.open(url, target);

}