function ShowDidYouKnow()
{
	var layerId = "div_boite_saviez_vous";
	document.getElementById([layerId]).style.display = "block";
}

function AutoTab(field,NextControl,maxlimit) {
	
	if (field.value.length == maxlimit) 
	{
		document.getElementById([NextControl]).focus();
		document.getElementById([NextControl]).select();	
	}
}


