// JavaScript Document

function runStartList()
{
var ls=window.StartList;
if (ls)
	{
	for(i=0;i<ls.length;i++)
		{
		fnc=ls[i];
		if (typeof(fnc)=='function')	fnc();
		else							eval(fnc);
		}
	}
}
window.onload=runStartList;



var txtRecherche='mot(s) clé(s)';

function getFocusRecherche()
{
obj=document.getElementById('Recherche');
if (obj)
	{
	obj.className='Focus';
	if (obj.value==txtRecherche)	obj.value='';
	}
}

function getBlurRecherche()
{
obj=document.getElementById('Recherche');
if (obj)
	{
	obj.className='';
	if (obj.value=='')	obj.value=txtRecherche;
	}
}

