	var tempo;
	var td_temp;
	var href_temp;
	
	function HighlightCell(t)
	{
		href_temp = document.getElementById("href" + t.id);
		td_temp = document.getElementById("td" + t.id);
		last = document.getElementById("last" + t.id);
		
		//change colors
		td_temp.style.backgroundColor = '#F5F4F1';
		href_temp.style.backgroundColor = '#F5F4F1';
		td_temp.style.color = "#D4A719";
		last.style.backgroundColor = '#F5F4F1';
		last.style.color = "#D4A719";
	}
	
	//visible
	function make_visible(t)
	{
		tempo = document.getElementById(t);
		tempo.style.visibility = "visible";
	}
	
	//invisible
	function make_invisible(t)
	{ 	
		tempo = document.getElementById(t);
		tempo.style.visibility = "hidden";
	}
	
	
	function NormalCell(t)
	{
		href_temp = document.getElementById("href" + t.id);
		td_temp = document.getElementById("td" + t.id);
		last = document.getElementById("last" + t.id);
		
		//change colors
		td_temp.style.backgroundColor = '#FFFFFF';
		td_temp.style.color = "#FFFFFF";
		last.style.backgroundColor = "#FFFFFF";
		last.style.color = "#656565";
		href_temp.style.backgroundColor = '#FFFFFF';
	}


	//************
	//rollOvers
	//************
	
	function ov(n)
	{
		var i = document.getElementById(n);
		i.src = i.src.substr(0,i.src.lastIndexOf('_')) + "_ov.gif";
	}

	//*************
	//MouseOut
	//*************
	
	function of(n)
	{
   		var i = document.getElementById(n);
		i.src = i.src.substr(0,i.src.lastIndexOf('_')) + "_of.gif";
	}
	
	//*******************************
	//Reset une forme 
	//parametre f = nom de la form
	//*******************************
	
	function resetForm(f)
	{
		document.forms[f].reset();
	}
<!--- Script Liste Complete --->

function MM_preloadImages() { //v3.0
  var d=document; if(d.images){ if(!d.MM_p) d.MM_p=new Array();
    var i,j=d.MM_p.length,a=MM_preloadImages.arguments; for(i=0; i<a.length; i++)
    if (a[i].indexOf("#")!=0){ d.MM_p[j]=new Image; d.MM_p[j++].src=a[i];}}
}

function MM_swapImgRestore() { //v3.0
  var i,x,a=document.MM_sr; for(i=0;a&&i<a.length&&(x=a[i])&&x.oSrc;i++) x.src=x.oSrc;
}

function MM_findObj(n, d) { //v4.01
  var p,i,x;  if(!d) d=document; if((p=n.indexOf("?"))>0&&parent.frames.length) {
    d=parent.frames[n.substring(p+1)].document; n=n.substring(0,p);}
  if(!(x=d[n])&&d.all) x=d.all[n]; for (i=0;!x&&i<d.forms.length;i++) x=d.forms[i][n];
  for(i=0;!x&&d.layers&&i<d.layers.length;i++) x=MM_findObj(n,d.layers[i].document);
  if(!x && d.getElementById) x=d.getElementById(n); return x;
}

function MM_swapImage() { //v3.0
  var i,j=0,x,a=MM_swapImage.arguments; document.MM_sr=new Array; for(i=0;i<(a.length-2);i+=3)
   if ((x=MM_findObj(a[i]))!=null){document.MM_sr[j++]=x; if(!x.oSrc) x.oSrc=x.src; x.src=a[i+2];}
}

//Function attached to a search textbox to override a browser default submit behavior
//on "Enter" key press and trigger a specific element instead of the first one defined in
//the page.
//Parameters:
//e->the window.document.event from an onkeypress action.
//triggerElementID->the element id that needs to be clicked to perform the desired action
function handleEnter(e,triggerElementID)
{
	//if the key pressed is "enter"
	if(e.keyCode==13)
	{	
		//if the user's browser is Mozilla's based, the first method is available since
		//their DOM implementation is more advanced than IE
		if (e.preventDefault)
		{e.preventDefault();}
		else
		{window.event.returnValue=false;}
		//Focus and click on the trigger
		document.getElementById(triggerElementID).focus(); 
		document.getElementById(triggerElementID).click();
	}
	else
	{
		return true;
	}
}