    <!--
    // DECLARATION DE VARIABLE GLOBALE
    var platform;
    var browser;
    var version;
    var adjWidth;
    var adjHeight;
	var anim="floragnarok.swf";	// Anim flash à charger

    // PROPRIETE POUR L OUVERTURE D UN FULL SCREEN SOUS NETSCAPE
    windowprops = "top=0,left=0,resizable=yes" + ",width=" + screen.width + ",height=" + screen.height;
    // RECUPERATION DE LA VERSION DU BROWSER
    version = parseInt(navigator.appVersion);
	
    // RECUPERATION DE LA PLATEFORME + NAVIGATEUR
    if(navigator.userAgent.indexOf('Win') == -1) 
	{
    	platform = 'Macintosh';
    } 
	else 
	{
    	platform = 'Windows';
    }
	
    if(navigator.appName.indexOf('Netscape') == -1) 
	{
    	browser = 'IE';
    } 
	else 
	{
    	browser = 'Netscape';
    }
    // AJUSTEMENT DES PROPRIETES POUR LES MAC.
    if((platform == 'Macintosh') && (browser == 'Netscape')) 
	{ 
		adjWidth = 20;
    	adjHeight = 35;
    }
    if((platform == 'Macintosh') && (browser == 'IE')) 
	{
    	adjWidth = 20;
    	adjHeight = 35;
    	winOptions = 'fullscreen=yes';
    }
    // AJUSTEMENT DES PROPRIETES POUR LES PC.
    if((platform == 'Windows') && (browser == 'Netscape')) 
	{
    	adjWidth = 12;
    	adjHeight = 12;
    }
    if((platform == 'Windows') && (browser == 'IE')) 
	{
    	adjWidth = 10;
    	adjHeight = 28;
    }

    // FONCTION DE LANCEMENT
    function launch(newURL, newName, newFeatures, orgName) 
	{
		var remote = open(newURL, newName, newFeatures);
		if (remote.opener == null)
		remote.opener = window;
		remote.opener.name = orgName;
		return remote;
    }
   
	
	function LaunchInBrowser()
	{		
		var winWidth = screen.availWidth;
		var winHeight = screen.availHeight;		// TEST SUR LA TAILLE DE L ECRAN
		if(window.screen.availwidth < 800) 
		{
			// Ecran de taille suffisante
			this.location = "troppetit.htm";
		} 
		else 
		{
			
			// Tout est ok on lance dans le browser courant
			this.location = anim;
		}
	}
	
	function LaunchInPopUp()
	{
		// TEST SUR LA TAILLE DE L ECRAN
		if(window.screen.availwidth < 650) 
		{
			// Ecran 640x480
			this.location = "troppetit.htm";
		}
		else 
		{
			// Tout est ok on lance dans une pop up avec les propriétées adaptées.
			window.open(anim,"main","width=1024,height=768,toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=auto,resizable=no,left=1,top=1,x=1,y=1");
		}
    }

// -->