<!--
var hasReqestedVersion = DetectFlashVer(requiredMajorVersion, requiredMinorVersion, requiredRevision);

if ((GetCookie ("version") == null))
{
	if (!hasReqestedVersion)
	{ 
		SetCookie('version', 'html');
	}
	else
	{
		SetCookie('version', 'flash');
	}
	window.location.reload();
}

if(GetCookie('version') == 'html')
{
	$('flashcontent').innerHTML = "";
	$('flashcontent').style.backgroundImage = 'url('+rootSite+'img/tache-HTML.gif)';
	var html = document.getElementById('menuGauche');
	if (html)
	$('menuGauche').style.visibility = "visible";
	var html = document.getElementById('txtVertical');
	if (html)
	$('txtVertical').style.visibility = 'visible';
	var html = document.getElementById('savoirPlus');
	if (html)
		$('savoirPlus').style.visibility = "visible";
	viewContent();
}
else
{
	var html = document.getElementById('flashcontent');
	if (html)
		$('flashcontent').style.visibility = "visible";
	var html = document.getElementById('htmlcontent');
	if (html)	
		$('htmlcontent').style.visibility = "hidden";	
	var html = document.getElementById('txtVertical');
	if (html)
		$('txtVertical').style.visibility = "hidden";
	
}

//setTimeout("viewContent()",10000); 
// -->

