var layeron;
var layerclass;
var timerOption2;
var nb_id;

function AffichageElement(nomelement,nomclass,old)
{
	if(layeron!=nomelement)MasqueElement(layeron,old)

	if(document.getElementById(nomelement)){

		if(document.images[nomelement+"_img"]){
			document.images[nomelement+"_img"].src=document.getElementById(nomelement).className==nomclass ? '/images/icones/fleche_droite.gif':'/images/icones/fleche_bas.gif';
		}
		document.getElementById(nomelement).className=document.getElementById(nomelement).className==nomclass ? "displaynone":nomclass;
		if(old==1 && document.getElementById(nomelement).className==nomclass)
		{
			layeron=nomelement;
		}
		else
		{
			layeron="";
		}
	}
}

function MasqueElement(nomelement,old)
{
	nomelement=nomelement ? nomelement:layeron;

	if(nomelement)
	{
		if (document.getElementById(nomelement)){
			document.getElementById(nomelement).className="displaynone";
		}
		if(document.images[nomelement+"_img"]){
			document.images[nomelement+"_img"].src='/images/icones/fleche_droite.gif';
		}
	}
	if(layeron==nomelement)layeron="";
}

function EtatId(nomelement,etat)
{
	if(nb_id==0)return;

	for(i=0;i<nb_id;i++){
		if(document.getElementById(nomelement+i)){
			document.getElementById(nomelement+i).className=etat ? nomelement:"displaynone";
		}
	}
}

function viewMostViewed()
{
	getid('LastViewedVideo').className='displaynone';
	getid('MostViewedVideo').className='t11 Txt';
	getid('AMostViewed').className='Txt bold';
	getid('ALastViewed').className='blanc bold';
	getid('DivMostViewed').className='backGrisL';
	getid('DivLastViewed').className='backGrisM';
}

function viewLastViewed()
{
	getid('MostViewedVideo').className='displaynone';
	getid('LastViewedVideo').className='t11 Txt';
	getid('ALastViewed').className='Txt bold';
	getid('AMostViewed').className='blanc bold';
	getid('DivMostViewed').className='backGrisM';
	getid('DivLastViewed').className='backGrisL';
}

function viewOngletLayer(LayerName,LayerIdView,LayerIdHide)
{
	getid(LayerName+"_CONTENU_"+LayerIdView).className='displaynone';
	getid(LayerName+"_CONTENU_"+LayerIdHide).className='t11 Txt';
	getid(LayerName+"_A_"+LayerIdHide).className='Txt bold';
	getid(LayerName+"_A_"+LayerIdView).className='blanc bold';
	getid(LayerName+"_ONGLET_"+LayerIdHide).className='backGrisL';
	getid(LayerName+"_ONGLET_"+LayerIdView).className='backGrisM';
}

function viewCommentaire()
{
	getid('AddCommentaire').className='displaynone';
	getid('ViewCommentaire').className='t11 Txt';
	getid('AViewCommentaire').className='Txt bold';
	getid('AAddCommentaire').className='blanc bold';
	getid('DivViewCommentaire').className='backGrisL';
	getid('DivAddCommentaire').className='backGrisM';
}

function viewAddCommentaire()
{
	getid('ViewCommentaire').className='displaynone';
	getid('AddCommentaire').className='t11 Txt';
	getid('AAddCommentaire').className='Txt bold';
	getid('AViewCommentaire').className='blanc bold';
	getid('DivViewCommentaire').className='backGrisM';
	getid('DivAddCommentaire').className='backGrisL';
}

