var timerID = null;
var timerOn = false;
var timecount = 0;
function HideAll() {
document.getElementById("Ly_Entreprise").style.display = "none";
document.getElementById("Ly_RJ").style.display = "none";
}

/** **/
function HideEntreprise() {
document.getElementById("Ly_Entreprise").style.display = "none";
}
function HideRJ() {
document.getElementById("Ly_RJ").style.display = "none";
}

function startTimeEntreprise() {
	if (timerOn == false) {
		timerID=setTimeout( "HideEntreprise()" , timecount);
		timerOn = true;
	}
}
function startTimeRJ() {
	if (timerOn == false) {
		timerID=setTimeout( "HideRJ()" , timecount);
		timerOn = true;
	}
}

function ShowContent(d) {
document.getElementById(d).style.display = "";
}
function stopTime() {
	if (timerOn) {
		clearTimeout(timerID);
		timerID = null;
		timerOn = false;
	}

}