//Copyright La Compagnie Multimédia
function coloriser(lignetable,couleurdefo,couleurover,option){
if(option=="over"){
lignetable.cells[0].style.backgroundColor = couleurover;
lignetable.cells[0].style.cursor = "hand";
}
if(option=="out"){
lignetable.cells[0].style.backgroundColor = couleurdefo;
}
}

function redir(url){
document.location.href=url;
}
function envoiDates(mois,jour,dest){
	document.write("test");
    document.monform.month.value=mois;
	document.monform.day.value=jour;
	document.monform.method='GET';
	document.monform.action=dest;
    document.monform.submit();
}

