function texte_in() {
  this.style.backgroundColor='#FFFFFF'; this.style.cursor='hand';this.style.border='1px solid #162256';
}
function texte_out() {
  this.style.backgroundColor='';this.style.border='1px solid #000000';
}
function texte_link(lien) {
  window.location.href='+lien+'; return false;
}
var saved = 0;
function reduc(what){
     what = document.getElementById(what);
     if (what.width>768 || saved>768)
     {
          if (what.width==768)
               what.width=saved;
          else
          {
               saved = what.width;
               what.style.cursor = "pointer";
               what.width=(768);
          }
     }
}
