var OldSelected = '';

// JavaScript Document
function Teste_Navigateur()
{

		Nom_Browser = navigator.appName;
		
		Version_Browser = navigator.appVersion;
		
		if ( Nom_Browser == "Netscape" )
		{
			return 1;
		}
		if ( Nom_Browser == "Microsoft Internet Explorer" )
		{
			return 2;
		}
		return 2;
}
function Chanstyle_Scroll()
{
	var iNav = Teste_Navigateur();
	
		//// mise à la taille de la colonne de gauche
		if( iNav == 1) //safari et Gecko
			{
				/// rien
			}
	    if( iNav == 2)//ie
		   {
				// mise a jour de la mise en forme des pages
				var obj = document.getElementById("TITRE_PARAGRAPHE");
				if( obj != null ) obj.style.margin = '8px 0px 0px 15px';
				
				var obj = document.getElementById("TITRE_PARAGRAPHE2");
				if( obj != null ) obj.style.margin = '8px 0px 0px 15px';
				
				
				var obj = document.getElementById("PARAGRAPHE");
				if( obj != null ) obj.style.margin = '8px 0px 0px 20px';
				
				
				
		   }

}


function Affichediv(divAfficher,divMasquer)
{
	var iNav = Teste_Navigateur();
	//alert(divAfficher);
		//// mise à la taille de la colonne de gauche
		if (OldSelected != divAfficher)
		{
			if( iNav == 1) //safari et Gecko
				{
					var obj = document.getElementById(divAfficher);
					if( obj != null ) obj.setAttribute('style',"display:block;"  );	
					
					var obj = document.getElementById(divMasquer);
					if( obj != null ) obj.setAttribute('style',"display:none;"  );	
					
				}
			if( iNav == 2)//ie
			   {
				   var obj = document.getElementById(divAfficher);
					if( obj != null ) obj.style.display = 'block';
					
				var obj = document.getElementById(divMasquer);
					if( obj != null ) obj.style.display = 'none';
					
			
			   }
			   
			 OldSelected = divAfficher;
		}
}

function OpenCallBack(LURL)
{
	///alert("yes");
	///window.open( LURL ,'Atout réussite','height=400 , width=450 , location=no , resizable=no , scrollbars=no');
	//alert("yes");
	window.open( LURL , "RAPPEL","height=330,width=350,location=0,resizable=0,scrollbars=0");
}


















