/* AUTEUR: Joël DESPREZ */
/* DATE DE CREATION: 03/10/03 */
/* REVISION :  */

// Debut script

/* Test de la résolution */
if (screen.height >= 768 && screen.width >= 1024) {
  var res = 1024 ;
}
else if (screen.height >= 600 && screen.width >= 800) {
    var res = 800 ;
}
else {
  var res = 640 ;
}

//  Fin script
