		function changeCouleur(cellule,couleurFond,couleurPolice) {
			var change = 1;			
			if (typeof(td) != "undefined") {
				if (cellule == td) change = 0;
			}
			if (typeof(td2) != "undefined") {
				if (cellule == td2) change = 0;
			}
			
			if (change) {
				cellule.style.backgroundColor = couleurFond;
				cellule.style.color=couleurPolice;				
			}
			
		}
		
		function diaporama() {
			document.write("<script src=\"http://www.prd-fr.com/slideshow.phtml\" type=\"text/javascript\"></script>");
		}
		
		function openpop(uurl) {
			window.open(uurl,'fenetre','width=800,height=800, scrollbars=yes, menubar=no,toolbar=no');
		}
		
		function cachedivpatience() {
			if (document.getElementById) {
				if (document.getElementById('patience')) document.getElementById('patience').style.visibility = "hidden";
			}
			if (document.all) {
				if (document.all.patience) document.all.patience.style.visibility = "hidden";
			}
		}		