<!--

// Get the value for the item that is selected

function getListValue(list)
{ var LV = "";
   if (list.selectedIndex != -1) {
      LV = list.options[list.selectedIndex].value;}
   return (LV); }

// Start up for a selection

function onListChange(list)
{
  parent.donnees.location.href = getListValue(document.TOC.LIST);
}

var taille_x = 0;
var taille_y = 0;
var defilement = "yes";
var redimention = 0;
var fulls="yes";
var menu = 0;

function ouvrir_fenetre ( taille_x, taille_y, nom, defilement, redimention, menu, url )
{
            
 if ((screen.width == 1024) && (taille_x >= 924)) taille_x = 924;
 if ((screen.width ==  800) && (taille_x >= 700)) taille_x = 700;
 if ((screen.width ==  640) && (taille_x >= 540)) taille_x = 540;
 if ((screen.width == 1024) && (taille_y >= 668)) taille_y = 668;
 if ((screen.width ==  800) && (taille_y >= 500)) taille_y = 500;
 if ((screen.width ==  640) && (taille_y >= 380)) taille_y = 380;

 fulls="yes";
 if ( ( taille_x != 0 ) && ( taille_y != 0 ) ) fulls="no";

 Window2 = open( url, nom, "scrollbars="  + defilement + 
                           ",resizable="  + redimention + 
                           ",menubar="    + menu + 
                           ",fullscreen=" + fulls + 
                           ",width="      + taille_x + 
                           ",height="     + taille_y);
}


//-->
