<!--
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";
	//$('img10trucs').style.visibility = "hidden";
	//$('htmlcontent').style.visibility = "visible";
	$('txtVertical').style.visibility = 'visible';
	$('memoryPict').style.visibility = "hidden";
	var html = document.getElementById('savoirPlus');
	if (html)
		$('savoirPlus').style.visibility = "visible";
	viewContent();
}
else
{
	$('flashcontent').style.visibility = "visible";
	$('menuGauche').style.visibility = "hidden";	
	$('txtVertical').style.visibility = 'hidden';
	
	//$('htmlcontent').style.visibility = "hidden";
}



