function topmenu_over(obj)
{
	if(navigator.appVersion.indexOf("MSIE 5")== -1)
	{
		obj.style.cursor = "pointer";
	}
}
function menu_over_bg(obj)
{
	obj.style.backgroundColor = "#F1F1F1";
	if(navigator.appVersion.indexOf("MSIE 5")== -1)
	{
		obj.style.cursor = "pointer";
	}
	obj.getElementsByTagName("a")[0].style.textDecoration = "Underline";
	obj.getElementsByTagName("a")[0].style.color = "#000000";
}

function menu_out_bg(obj)
{
	obj.style.backgroundColor = "#E3E3E3";
	obj.getElementsByTagName("a")[0].style.textDecoration = "None";
	obj.getElementsByTagName("a")[0].style.color = "#58707C";
}

function submenu_over_bg(obj)
{
	obj.style.backgroundColor = "#E3E3E3";
	if(navigator.appVersion.indexOf("MSIE 5")== -1)
	{
		obj.style.cursor = "pointer";
	}
	obj.getElementsByTagName("a")[0].style.textDecoration = "Underline";
	obj.getElementsByTagName("a")[0].style.color = "#000000";
}

function submenu_out_bg(obj)
{
	obj.style.backgroundColor = "#D9D9D9";
	obj.getElementsByTagName("a")[0].style.textDecoration = "None";
	obj.getElementsByTagName("a")[0].style.color = "#58707C";
}
function printpage()
{
	window.print();
}
function printdate() {         

days = new Array();         

days[0] = "Dimanche";         

days[1] = "Lundi";         

days[2] = "Mardi";         

days[3] = "Mercredi";         

days[4] = "Jeudi";         

days[5] = "Vendredi";         

days[6] = "Samedi";         

months = new Array();         
 
months[0] = "janvier";         

months[1] = "février";         

months[2] = "mars";         

months[3] = "avril";         

months[4] = "mai";         

months[5] = "juin";         

months[6] = "juillet";         

months[7] = "août";         

months[8] = "septembre";         

months[9] = "octobre";         

months[10] = "novembre";         

months[11] = "décembre";         

today = new Date();         

document.write('<font size="1" font color="black">');         

document.write(days[today.getDay()]+" ");

document.write(today.getDate()+" ");         

document.write(months[today.getMonth()]+" ");

document.write(today.getYear()+" ");  

document.write('</font>'); 

} 

function Remplace(expr,a,b) 
{
  var i=0
      
  while (i!=-1) 
  {
    i=expr.indexOf(a,i)
    if (i>=0) 
    {
      expr=expr.substring(0,i)+b+expr.substring(i+a.length)
      i+=b.length;
    }
  }
  return expr
}
