<!--

	
	function roll(cellule, color)
	{
		cellule.style.backgroundColor = color;
		cellule.style.cursor= 'hand';
	}

	function cadre_on(numero)
	{
		document.getElementById("cadre_"+numero).innerHTML = document.getElementById("ccadre_"+numero).innerHTML
		document.getElementById("cadre_"+numero).style.visibility = "visible";
	}

	function cadre_off(numero)
	{
		document.getElementById("cadre_"+numero).innerHTML = "";
		document.getElementById("cadre_"+numero).style.visibility = "hidden";
	}

	function popup(chemin, target,W, H)
	{
		var left2=(screen.width-W)/2;
		var top2=(screen.height-H)/2;
		window.open(chemin,target,'top='+top2+',left='+left2+',width='+W+',height='+H+',scrollbars=no,resizable=no,menubar=no,status=no,toolbar=no');
	}

	function popup1(chemin, target,W, H)
	{
		var left2=(screen.width-W)/2;
		var top2=(screen.height-H)/2;
		window.open(chemin,target,'top='+top2+',left='+left2+',width='+W+',height='+H+',scrollbars=yes,resizable=no,menubar=no,status=no,toolbar=no');
	}

	function popup2(chemin, target)
	{
		var H=480;
		var W=640;

		var left2=(screen.width-W)/2;
		var top2=(screen.height-H)/2;
		window.open(chemin,target,'top='+top2+',left='+left2+',width='+W+',height='+H+',scrollbars=yes,resizable=no,menubar=no,status=no,toolbar=no');
	}

	function popup3(chemin, target)
	{
		var H=480;
		var W=640;

		var left2=(screen.width-W)/2;
		var top2=(screen.height-H)/2;
		window.open(chemin,target,'top='+top2+',left='+left2+',width='+W+',height='+H+',scrollbars=yes,resizable=yes,menubar=no,status=no,toolbar=no');
	}

	function lien(chemin)
	{
		document.location.href=chemin;
	}
	
	function question(what, chemin)
	{
		if(confirm(what))
		{
			document.location.href=chemin;
		}
	}

	function popup_close(chemin)
	{
		opener.document.location.href=chemin;
		window.close();
	}
	

//-->