

var xOffset=6
var yOffset=5    

var affiche = false;
var w3c=document.getElementById && !document.all;
var ie=document.all;

if (ie||w3c) {
  var photo
}

function ietruebody(){ 
  return (document.compatMode && document.compatMode!="BackCompat")? document.documentElement : document.body
}

function deplacer(e) {
  if(affiche){
     
        photo.style.top = "5px"

  }
}
function montre(text) {
  if (w3c||ie){
    photo = document.all ? document.all["cadre"] : document.getElementById ? document.getElementById("cadre") : ""
    photo.innerHTML = text;
    photo.style.visibility = "visible";
    affiche = true;
  }
}
function cache() {
  if (w3c||ie){
    affiche = false
    photo.style.visibility="hidden"
    photo.style.top = '-1000px'
    photo.style.backgroundColor = ''
    photo.style.width = ''
  }
}

document.onmousemove = deplacer;




