// 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)
{
	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;
		}
}

function ChangeColorTexte(id , color, type)
{
	var iNav = Teste_Navigateur();
	
		//// mise à la taille de la colonne de gauche
		if( iNav == 1) //safari et Gecko
			{
				var obj = document.getElementById(id);
				if( obj != null ) obj.setAttribute('style',"color:"+color+";"  );
									//obj.setAttribute('style',"font-weight:"+type+";"  );
			}
	    if( iNav == 2)//ie
		   {
			   var obj = document.getElementById(id);
				if( obj != null ) obj.style.color = color;
		   }
}

function ZoomImage(URLimage,largeur,hauteur)
{
	window.open('popup.php?image='+URLimage,"popup","menubar=no, status=no, scrollbars=no, menubar=no, width="+largeur+", height="+hauteur+"");
}















