function selectionDate(num,total)
{
	for(var i = 1; i <= total; i++)
	{
		document.getElementById("item"+i).style.background='#0D3574';
	}
	document.getElementById(num).style.background='#F8822B';
}

function openPopupBase(page,nomPage,largeur,hauteur)
{
	window.open(page,nomPage,'toolbar=0, location=0, directories=0, status=0, scrollbars=0, resizable=0, copyhistory=0, menuBar=0, width='+largeur+', height='+hauteur);
}