// survol ligne
function change_color_ligne(id,defaut,texto){
	document.getElementById(id).style.backgroundColor=defaut;
	// si on mouseover col=#FF8000 sinon col=#000000
	var col = (texto) ? "#FFFFFF" : "#494949";	
	// on change la couleur de la police pr les 5 <td>
	// il faut que les 5 id soit instanciées
	document.getElementById('0'+id+'1').style.color=col;
	document.getElementById('0'+id+'2').style.color=col;
	document.getElementById('0'+id+'3').style.color=col;
	document.getElementById('0'+id+'4').style.color=col;
	document.getElementById('0'+id+'5').style.color=col;
	document.getElementById('0'+id+'6').style.color=col;
}

// popup centre
function popupcentre(page,largeur,hauteur,scrol) {
  var top=(screen.height-hauteur)/2;
  var left=(screen.width-largeur)/2;
  window.open(page,"","top="+top+",left="+left+",width="+largeur+",height="+hauteur+",menubar=no,toolbar=no,resizable=yes,scrollbars="+ scrol);
}
