
// onMouseOver="info(event, "test");"
function hide_info()
{
	document.getElementById('INFODiv').style.display = "none";
}
function info(e, Text)
{
  //Position de la souris :
  x = (navigator.appName.substring(0,3) == "Net") ? e.pageX : event.x+document.body.scrollLeft;
  y = (navigator.appName.substring(0,3) == "Net") ? e.pageY : event.y+document.body.scrollTop;
  x += 20;
  y += 20;
  document.getElementById('INFODiv').style.left = x + "px";
  document.getElementById('INFODiv').style.top = y + "px";
  document.getElementById('INFODiv').style.display = "block";
  document.getElementById('INFODiv').innerHTML = Text;
}

function bookmarksite(title, url){
if (document.all)
	window.external.AddFavorite(url, title);
else if (window.sidebar)
	window.sidebar.addPanel(title, url, "")
}

function ShowImage(lien, width, height)
{
	window.open(lien, 'Image', 'resizable=no, location=no, width=' + (width + 20) + ', height=' + (height + 20) + ', menubar=no, status=no, scrollbars=no, menubar=no');
}

function DownImage(lien)
{
	window.open(lien, 'DownImage', 'resizable=no, location=no, width=20, height=20, menubar=no, status=no, scrollbars=no, menubar=no');
}

function Show_Menu(num)
{
	if(document.getElementById("Element_" + num ))
	if(document.getElementById("Element_" + num ).style.display == "block")
		{
			document.getElementById("Element_" + num ).style.display = "none";
			document.getElementById("Image_" + num ).src = "./images/+.png";
		}
	else 
		{
			document.getElementById("Element_" + num ).style.display = "block";
			document.getElementById("Image_" + num ).src = "./images/-.png";
		}
	
}
