<!--

// By Epix 2001
// Karenita

document.onmousemove = get_mouse;


function bulle(msg)
         {
         var content ="<TABLE BORDER=0 CELLPADDING=2 CELLSPACING=0 align=center width=\"90%\" ><TR><TD align=\"center\"><FONT face=arial COLOR=#000000 SIZE=2>"+msg+"</FONT></TD></TR></TABLE>";
         document.all("topdeck").innerHTML = content;
         topdeck.style.visibility = "visible";
		 
         }

function get_mouse(e)
         {
         var xx = event.x+this.body.scrollLeft;
         var yy = event.y+this.body.scrollTop;
         LargeurEcran = (screen.width) ? (screen.width)/3 : 0;
         HauteurEcran = (screen.height) ? (screen.height)/3 : 0;
         topdeck.style.left = xx - 30 ;
         topdeck.style.top  = yy - 160;
          
         }

function position_layer(nom_layer)
         {
          eval(nom_layer+".style.top=200");
          eval(nom_layer+".style.left=300");
         }

function kill()
         {
          topdeck.style.visibility = "hidden";
         }


//-->
