<!--
//Fonctions de formulaire:
//===============================================

var ajax;
function openCloseDiv()
{
	if($(tardiv).visible())
	{
		new Effect.toggle(tardiv, 'blind', { duration:0.8, asynchronous:true });
	}
	else
	{
		changeContenu();
	}
}

function changeContenu()
{
	var ajax = new Ajax.Updater( tardiv, url, { asynchronous:true, evalScripts:true, onComplete:openDiv } );
}
function openDiv()
{
	new Effect.toggle(tardiv, 'blind', {duration:0.8});
}	
// -->