function change(obj, color,s)
 {
   obj.style.background = color ;
if (s=='out')
obj.style.background='url(../../images/mbg.gif)';
 }
function chgim(e,i)
{
 document.getElementById(i).src=e;
}


if (document.getElementById){
	box = document.getElementById('popbox').style;
	if(navigator.appName.substring(0,3) == 'Net')
		document.captureEvents(Event.MOUSEMOVE);
	document.onmousemove = pointer;
	}
	
function poplink(contenu){
var content ='<TABLE BORDER=0 width=150 CELLPADDING=3 CELLSPACING=1 BGCOLOR=#8a8a8a><TR><TD BGCOLOR=#dcdcdc id=inf width=150>'+contenu+'</TD></TR></TABLE>';
	if (document.getElementById)
		{
	  	document.getElementById('popbox').innerHTML = content;
	  	box.visibility = 'visible';
  		}
		}
function pointer(e)
	{
	var x = (navigator.appName.substring(0,3) == 'Net') ? e.pageX : event.x+document.body.scrollLeft+10;
	var y = (navigator.appName.substring(0,3) == 'Net') ? e.pageY : event.y+document.body.scrollTop-30;
	box.left = x+20;
	box.top = y-50;
	}
function closepopup()
	{
	if (document.getElementById)
  		box.visibility = 'hidden';
	}