

//liste des fonctions 

//cette fonction sert a faire apparaitre et cacher des tableaux, zone de texte ,

function clikker(a) {
		if (a.style.display =='') {
			a.style.display = 'none';			
		}
		else {
 			a.style.display='';			
			  }
}

function na_open_window(name, url, left, top, width, height, toolbar, menubar, statusbar, scrollbar, resizable)
{
  toolbar_str = toolbar ? 'yes' : 'no';
  menubar_str = menubar ? 'yes' : 'no';
  statusbar_str = statusbar ? 'yes' : 'no';
  scrollbar_str = scrollbar ? 'yes' : 'no';
  resizable_str = resizable ? 'yes' : 'no';
  window.open(url, name, 'left='+left+',top='+top+',width='+width+',height='+height+',toolbar='+toolbar_str+',menubar='+menubar_str+',status='+statusbar_str+',scrollbars='+scrollbar_str+',resizable='+resizable_str);
}

<!------------------------ fonction ferme un pipup apres x secondes  ----------------------->

function StartTimer(delai) {
  // Déclenche le timer à la fin du chargement de la page (delai est en secondes)
  setTimeout("na_open_window()",delai*1000);
}
function PopUp(URL){
	window.open(URL, '', 'toolbar=0,scrollbars=1,location=0,statusbar=0,menubar=0,resizable=0,width=898,height=600,left = 100,top = 50');
	return false;
}
/*************** fonct qui ferme le popup apres n secondes ************************/
function kill() {
	window.open("kill.html",'na_open_window','width=400,height=200,toolbar=false,scrollbars=false');
}
function rebours(seconde) {
	setTimeout("kill()",seconde*1000);
}
