<!--
var moInput;

document.write('<iframe style=\"display:none;position:absolute;width:152;height:160;z-index:99;\" id=Calendrier marginheight=0 marginwidth=0 noresize frameborder=0 scrolling=no></iframe>')

function AC(oInput, szDateMin, szDateMax, nLeft, nTop)
{
var bAffiche;

	bAffiche = false;
	if (moInput != oInput)
		bAffiche = true;
	else
		if (document.all.Calendrier.style.display == 'none')
			bAffiche = true;
	moInput = oInput;
	if (bAffiche)
	{
		var oFrame = document.getElementById('Calendrier');
		if (oFrame)
		{
			//alert(oFrame.contentWindow.document);
			oFrame.contentWindow.document.body.innerHTML = '';
			document.all.Calendrier.style.display = '';
			if (nLeft == -1)
				document.all.Calendrier.style.left = oInput.offsetLeft;
			else
				document.all.Calendrier.style.left = nLeft;
			if (nTop == -1)
				document.all.Calendrier.style.top = oInput.offsetTop + oInput.offsetHeight;
			else
				document.all.Calendrier.style.top = nTop;
			oFrame.contentWindow.location.href = 'Calendrier/Calendrier.asp?ZE_DATE=' + oInput.value + '&ZE_DATE_MIN=' + szDateMin + '&ZE_DATE_MAX=' + szDateMax;
		}
	}
	else
		document.all.Calendrier.style.display = 'none';
}

function CC()
{
	if (document.all.Calendrier.style.display == '')
		document.all.Calendrier.style.display = 'none';
}
-->
