<!--

if(ns4) document.captureEvents(Event.MOUSEDOWN | Event.MOUSEMOVE | Event.MOUSEUP);
document.onmousemove=Ruch; 

var display = "off";
var objName = "tablesChm";

/*var clipX = 200;		
var clipY = 0;
var width = 0;
var height = 0;*/

document.write("<style>");
document.write("#tablesChm{position:absolute;left:0;top:0;visibility:hidden;}");
document.write("</style>");

//get position of mouse

function Ruch(e)
{
	x = (ie4)? event.clientX + document.body.scrollLeft : e.pageX;
	y = (ie4)? event.clientY + document.body.scrollTop : e.pageY;
}

//activate fonction for browsers

function showAdresNN(number,action,text){
	if(ns4)	{
		showAdres(number,action,text);
	}
}

function showAdresIE(number,action,text){
	if(ie4 || ns6)	{
		showAdres(number,action,text);
	}
}


function showAdres(number,action,text)
{

	if(ie4)
	{
		obj = document.all[objName];
		sec = ".style.";
	}
	if(ns4)
	{
		obj = document.layers[objName];
		sec = ".";
	}
	if(ns6)
	{
		obj = document.getElementById(objName);
		sec = ".style.";
	}

	if(display == "off" && action == "on")
	{
		
		table_H = '<table border=0 width=150 cellpadding=5><tr><td class=content bgcolor="#e5e5e5">';
		table_F = '</td></tr></table>';
		
		textToWrite = table_H+""+text;
		textToWrite += table_F;
			
		if(ie4 || ns6){
			obj.innerHTML = textToWrite;
		}
		if(ns4){
			obj.document.open(); 
			obj.document.write(textToWrite); 
 			obj.document.close();
		}
			
		if(text.length > 0){
			showClip();
		}
		display = "on";
				
		if (ns4){
			height = obj.document.height;
			width = obj.document.width;
		} 
		if (ie4)	{
			height = obj.scrollHeight;
			width = obj.scrollWidth;
		}
		if(ns6)	{
			height = obj.height;
			width = obj.width;
			height = 0;
		}
		width = 150;		
	}	
	
	eval('obj'+sec+'left = x - width - 5');
	eval('obj'+sec+'top = y - height - 5');

	if(action == 'off')
	{
		hideClip();
		eval('obj'+sec+'left = 0');
		eval('obj'+sec+'top = 0');
		display = "off";
		
	}
}


function showClip()
{
	eval('obj'+sec+'visibility="visible"');
}

function hideClip()
{
	eval('obj'+sec+'visibility="hidden"');
}


//-->	
