// lien en cours
var a
// nombre de liens total
//var b=6

var t = new Array();
for (i=1;i<=b;i++)
{
t[i] = 1
}

// lien clique par defaut
//t[1] = 0

function r1(a)
{
if (document.all)
{
if (t[a]) 
{
//alert(a);
eval('document.all.td'+a+'.background = \'/img/p_on.gif\'')
}
}
}

function r2(a)
{
if (document.all)
{
if (t[a]) 
{
eval('document.all.td'+a+'.background = \'/img/p_off.gif\'')
}
}
}

function r3(a)
{
if (document.all)
{
for (i=1;i<=b;i++)
{
t[i] = 1
eval('document.all.td'+i+'.background = \'/img/p_off.gif\'')
}
t[a] = 0
eval('document.all.td'+a+'.background = \'/img/p_on.gif\'')
}
}

function bk(c)
{
if (document.all)
{
if (c!=0)
	{
t[c] = 0
eval('document.all.td'+c+'.background = \'/img/p_on.gif\'')
}
}
}

