function mouse_over(tr)
{
	tr.style.backgroundColor = '#DCD6BF';
	tr.style.cursor = 'pointer';
}

function mouse_out(tr)
{
	tr.style.backgroundColor = 'transparent';
}

function infobulle(id,texte)
{
	LeText = '<table width="150"><tr><img src="image.php?mode=appercu&id='+id+'"><br><b>'+texte+'</b></td></tr></table><br><br><br><br><br><br><br><br>'
	
	overlib(LeText,CAPTION,'Cliquez pour plus de détails',FIXX, o3_x + 10, FIXY + 100, 0, FGCOLOR, "#E7E1D1",BGCOLOR, "#C9C4B1");
	
	return;
}

function popup(url, name, width, height)
{
	window.open(url, name, 'scrollbars=yes, resizable=yes, width='+width+',height='+height);
}