/**
 * Fonctions pour l'interface utilisateur
 */

function affiche(num,index){
effaceEcrans(num);
var id="ecran"+index;
document.getElementById(id).style.display="block";
document.getElementById(id).style.visibility="visible";
document.getElementById("savoirplus"+num).href="siteEWtemplate.php?lang=fr&page="+donnelien(index);
}

function effaceEcrans(num){
if (num==1){
	imin=1;
	imax=4;
}
else {
	imin=4;
	imax=8;
}
for(var i=imin;i<imax;i++){
	var id2="ecran"+i;
	document.getElementById(id2).style.display="none";
	document.getElementById(id2).style.visibility="hidden";
}
}

function effaceHighlight(num){
	if (num==1){
		imin=1
		imax=4;
	}
	else {
		imin=4
		imax=8
	}
	for(var i=imin;i<imax;i++){
		var id2="choix"+i;
		var idt2="choixtxt"+i;
		document.getElementById(id2).style.backgroundColor="rgb(0,128,128)";
		document.getElementById(id2).style.color="white";
		document.getElementById(idt2).style.color="white";
	}
}


function afficheHighlight(num,index){
effaceHighlight(num);
	var id="choix"+index;
	var idt="choixtxt"+index;
	document.getElementById(idt).style.color="#000080";
	document.getElementById(id).style.backgroundColor="#FFEA90";

}

function donnelien(index){
switch (index){
case 1:return "fonction_edition.php"; 
case 2:return "fonction_calcul.php";
case 3:return "fonction_recherche.php";
case 4:return "utilisation_fiche.php";
case 5:return "utilisation_email.php";
case 6:return "utilisation_web.php";
case 7:return "utilisation_quizz.php";
}
}

function corrigeIE(){
var ua=navigator.userAgent;
if(ua.indexOf("MSIE")>0){
 for(i=1;i<8;i++){
	var idelem= "bloc"+i;
	var elemi=document.getElementById(idelem);
	if(elemi!=null)elemi.className="bloc_nofloat_ie";  
 }  
}
}
