var idtable=null;
var timerTable;
////////////////////////////////////////////////////////////////////////////////
function setIdTable(id)
{
	if(idtable==null)
	{
		idtable=id;
	}
	else if(idtable==id)
	{
		return;
	}
	else
	{
		hideTable();
		idtable=id;
	}
}
////////////////////////////////////////////////////////////////////////////////
function getIdTable()
{
	return idtable;
}
////////////////////////////////////////////////////////////////////////////////
function changeTdOver(td)
{
	td.setAttribute("class","tdPrjDynOver");//pour firefox
	td.setAttribute("className","tdPrjDynOver");//pour IE
}

function changeTdOut(td)
{
	td.setAttribute("class","tdPrjDynOut");//pour firefox
	td.setAttribute("className","tdPrjDynOut");//pour IE
}
////////////////////////////////////////////////////////////////////////////////
function timerHideTable()
{
	timerTable=setInterval("hideTable()",300);
}
////////////////////////////////////////////////////////////////////////////////
function hideTable()
{
	document.getElementById(getIdTable()).style.visibility='hidden';
}

function showTable()
{
	document.getElementById(getIdTable()).style.visibility='visible';
}
////////////////////////////////////////////////////////////////////////////////
