<!--
var hasReqestedVersion = DetectFlashVer(requiredMajorVersion, requiredMinorVersion, requiredRevision);

if ((GetCookie ("versionUK") == null))
{
	if (!hasReqestedVersion)
	{ 
		SetCookie('versionUK', 'html');
	}
	else
	{
		SetCookie('versionUK', 'flash');
	}
	window.location.reload();
}

if(GetCookie('versionUK') == 'html')
{
	$('flashcontent').innerHTML = "";
	$('flashcontent').style.backgroundImage = 'url('+rootSite+'img/tache-HTML.gif)';
	$('menuGauche').style.visibility = "visible";
	$('foetusPict').style.visibility = "hidden";
	$('txtVertical').style.visibility = 'visible';
	var html = document.getElementById('savoirPlus');
	if (html)
		$('savoirPlus').style.visibility = "visible";
	viewContent();
	//$('htmlcontent').style.visibility = "visible";
}
else
{
	$('flashcontent').style.visibility = "visible";
	$('menuGauche').style.visibility = "hidden";	
	$('htmlcontent').style.visibility = "hidden";
	$('txtVertical').style.visibility = 'hidden';
}
// -->

