
redimensionneConsulter();


if (getId("A")) {


var lettres = getId("LettresSurlignees").value;
while (lettres.length>=1) {
var lettre = lettres.substring(0,1);
getId("td" + lettre).style.backgroundColor = "#CCFF66"; 
getId("td" + lettre).setAttribute("surlignee","1");
if (lettres.length==1) {
break;
}
lettres = lettres.substring(1);
}
}


function gereClavier(e) {


if (getId("divInviteConnexion").style.display=="none" && getId("divInviteDeconnexion").style.display=="none") {
return;
}

var c = e.keyCode;


if (c=="39") {


var t = ["A","B","C","D","E","F","G","H","I","J","K","L","M","N","O","P","Q","R","S","T","U","V","W","X","Y","Z"];
var lettre = "";
var flag = false;
for (var i=0; lettre=t[i]; i++) {
if (flag==true) {
var p = document.location.href;
p = p.substr(0,p.length-1) + lettre;
window.open(p,"_self");
return;
}
if (flag==false && getId(lettre).getAttribute("mode") == "on") {
flag = true;
}
}
}


else if (c=="37") {


var t = ["A","B","C","D","E","F","G","H","I","J","K","L","M","N","O","P","Q","R","S","T","U","V","W","X","Y","Z"];
var lettre = "";
var flag = false;
for (var i=t.length-1; lettre=t[i]; i--) {
if (flag==true) {
var p = document.location.href;
p = p.substr(0,p.length-1) + lettre;
window.open(p,"_self");
return;
}
if (flag==false && getId(lettre).getAttribute("mode") == "on") {
flag = true;
}
}
}


else if (c=="65") { 
var p = document.location.href;
p = p.substr(0,p.length-1) + "A";
window.open(p,"_self");
}
else if (c=="66") { 
var p = document.location.href;
p = p.substr(0,p.length-1) + "B";
window.open(p,"_self");
}
else if (c=="67") { 
var p = document.location.href;
p = p.substr(0,p.length-1) + "C";
window.open(p,"_self");
}
else if (c=="68") { 
var p = document.location.href;
p = p.substr(0,p.length-1) + "D";
window.open(p,"_self");
}
else if (c=="69") { 
var p = document.location.href;
p = p.substr(0,p.length-1) + "E";
window.open(p,"_self");
}
else if (c=="70") { 
var p = document.location.href;
p = p.substr(0,p.length-1) + "F";
window.open(p,"_self");
}
else if (c=="71") { 
var p = document.location.href;
p = p.substr(0,p.length-1) + "G";
window.open(p,"_self");
}
else if (c=="72") { 
var p = document.location.href;
p = p.substr(0,p.length-1) + "H";
window.open(p,"_self");
}
else if (c=="73") { 
var p = document.location.href;
p = p.substr(0,p.length-1) + "I";
window.open(p,"_self");
}
else if (c=="74") { 
var p = document.location.href;
p = p.substr(0,p.length-1) + "J";
window.open(p,"_self");
}
else if (c=="75") { 
var p = document.location.href;
p = p.substr(0,p.length-1) + "K";
window.open(p,"_self");
}
else if (c=="76") { 
var p = document.location.href;
p = p.substr(0,p.length-1) + "L";
window.open(p,"_self");
}
else if (c=="77") { 
var p = document.location.href;
p = p.substr(0,p.length-1) + "M";
window.open(p,"_self");
}
else if (c=="78") { 
var p = document.location.href;
p = p.substr(0,p.length-1) + "N";
window.open(p,"_self");
}
else if (c=="79") { 
var p = document.location.href;
p = p.substr(0,p.length-1) + "O";
window.open(p,"_self");
}
else if (c=="80") { 
var p = document.location.href;
p = p.substr(0,p.length-1) + "P";
window.open(p,"_self");
}
else if (c=="81") { 
var p = document.location.href;
p = p.substr(0,p.length-1) + "Q";
window.open(p,"_self");
}
else if (c=="82") { 
var p = document.location.href;
p = p.substr(0,p.length-1) + "R";
window.open(p,"_self");
}
else if (c=="83") { 
var p = document.location.href;
p = p.substr(0,p.length-1) + "S";
window.open(p,"_self");
}
else if (c=="84") { 
var p = document.location.href;
p = p.substr(0,p.length-1) + "T";
window.open(p,"_self");
}
else if (c=="85") { 
var p = document.location.href;
p = p.substr(0,p.length-1) + "U";
window.open(p,"_self");
}
else if (c=="86") { 
var p = document.location.href;
p = p.substr(0,p.length-1) + "V";
window.open(p,"_self");
}
else if (c=="87") { 
var p = document.location.href;
p = p.substr(0,p.length-1) + "W";
window.open(p,"_self");
}
else if (c=="88") { 
var p = document.location.href;
p = p.substr(0,p.length-1) + "X";
window.open(p,"_self");
}
else if (c=="89") { 
var p = document.location.href;
p = p.substr(0,p.length-1) + "Y";
window.open(p,"_self");
}
else if (c=="90") { 
var p = document.location.href;
p = p.substr(0,p.length-1) + "Z";
window.open(p,"_self");
}
}

