  function hide_tooltip(){
    document.getElementById("tooltipper").innerHTML="" ;
  }
  function show_tooltip(event,txt){
     document.getElementById("tooltipper").innerHTML=txt;
  }
