﻿// JavaScript Document

///  FLASH DIMENSION

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 spotlight(urlImage)
{
	var iNav = Teste_Navigateur();
	if( iNav == 1) //safari et Gecko
		{
			//alert(document.getElementById('spotlight').clientWidth);
			
			var obj = document.getElementById('spotlight');
			if( obj != null ) obj.setAttribute('style',"display:block; margin:auto; "  );
			//alert(document.body.offsetWidth);//ok utilisable
			alert(document.all.offsetWidth);
		}
	if( iNav == 2)//ie
	   {
		   var obj = document.getElementById('spotlight');
			if( obj != null ) obj.style.display = 'block';
	
	   }
		
}

function MM_openBrWindow(theURL,winName,features) { //v2.0
  window.open(theURL,winName,features);
}