// JavaScript Document
var OldSelected = '';

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 Affichediv(divAfficher,divMasquer,count_total)
			{
				
				
				
				//alert(count);
				var iNav = Teste_Navigateur();
				
					//// 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;
					}
					affiche++;
					if(affiche > count_total){affiche = 1;}
					//alert(count);
					setTimeout("Affichediv("+affiche+",OldSelected,"+count_total+")",10000);
			}