function lexique(mode)
{
for(a=0;a<boite.length;a++)
{splited=new Array;
 splited= boite[a].split("|");
  if (mode==(a+1))
  {toto=splited[0];
  }
}
if (x>400)
 {document.getElementById(''+toto+'').style.left = x-265;}
else
 {document.getElementById(''+toto+'').style.left = x-100;}
document.getElementById(''+toto+'').style.top = y+30;
document.getElementById(''+toto+'').style.visibility = "visible";
}

function lexiqueof()
{
document.getElementById(''+toto+'').style.top =0;
document.getElementById(''+toto+'').style.left = 0;
document.getElementById(''+toto+'').style.visibility = "hidden";
toto='';
}

for(a=0;a<boite.length;a++)
{splited=new Array;
 splited= boite[a].split("|");
  document.write('<div id="'+splited[0]+'"')
  document.write('style="border: 1px solid rgb(157, 157, 161);text-align:center; background-color:rgb(250,250,210); padding: 3px;z-index: 502; position: absolute; width: 300px;  font-family: Arial,helvetica,sans-serif; font-size: 14px;  visibility: hidden;">');
  document.write('<div style="text-align:justify; font-family: Arial,Helvetica,sans-serif; font-size: 14px; color: rgb(204, 0, 0);">'+splited[1]+'</div>');
  if (splited[2]!="")
    {document.write('<div style="text-align:justify; font-family: Arial,Helvetica,sans-serif; font-size: 14px; color: rgb(204, 0, 0);">'+splited[2]+'</div>');}
  if (splited[3]!="")
    {document.write('<div style="text-align:justify; font-family: Arial,Helvetica,sans-serif; font-size: 14px; color: rgb(204, 0, 0);">'+splited[3]+'</div>');}
  document.write('</div>');
}
