//================== PACKAGE DE GESTION ECRAN =========================//

function cherchelargeur() {
alert("HELLO LARGEUR");
document.test.resultatlargeur.value = document.test_largeur.width;
}

function cherchelongueur() {
document.test.resultatlongueur.value = document.test_longueur.height;
}

function chercheTailleEcran() {
//document.test.resultatlongueur.value = document.test_longueur.height;*
//alert("taille ecran");
//alert(document.test_largeur.width,document.test_longueur.height);
document.form_log.resultatlargeur.value = document.test_largeur.width;
document.form_log.resultatlongueur.value = document.test_longueur.height;
}

function cache(num){
	if(num==1){
	elmt1=document.getElementById('attente');
	elmt1.style.visibility='hidden';
	
	elmt2=document.getElementById('attente2');
	elmt2.style.visibility='visible';
	
	}
	if(num==2){
	elmt1=document.getElementById('attente');
	elmt1.style.visibility='visible';
	
	elmt2=document.getElementById('attente2');
	elmt2.style.visibility='hidden';
	}
}

function ChangeTexte(n){
	var i=0;
		elmt=document.getElementById('texte1');
		elmt.style.visibility='hidden';
		elmt=document.getElementById('texte2');
		elmt.style.visibility='hidden';
		elmt=document.getElementById('texte3');
		elmt.style.visibility='hidden';
	if(n!=0){
		elmt=document.getElementById('texte'+n);
		elmt.style.visibility='visible';
	}
}
