// Permet de choisir l'affichage du Logo réduit sur les pages selon la résolution d'écran du client

 if (screen.width == 1024){ 
    document.write('<select name="categorieI" size=1 style="width:186px; font-size:11px" onChange="formHandlerI()">');
    } 
 else if ((screen.width == 1280) && (screen.height == 1024)){ 
    document.write('<select name="categorieI" size=1 style="width:234px; font-size:13px" onChange="formHandlerI()">');
    }
 else if (screen.width == 1280){ 
    document.write('<select name="categorieI" size=1 style="width:234px; font-size:13px" onChange="formHandlerI()">');
    } 
 else if (screen.width == 1680){ 
    document.write('<select name="categorieI" size=1 style="width:312px; font-size:16px" onChange="formHandlerI()">');
    } 
 else if (screen.width == 1440){
    document.write('<select name="categorieI" size=1 style="width:264px; font-size:14px" onChange="formHandlerI()">');
    }   
 else if (screen.width == 1152){ 
   document.write('<select name="categorieI" size=1 style="width:208px; font-size:13px" onChange="formHandlerI()">');
    } 
else if (screen.width == 800){ 
    document.write('<select name="categorieI" size=1 style="width:142px; font-size:10px" onChange="formHandlerI()">');
    }
 else { 
    document.write('<select name="categorieI" size=1 style="width:312px; font-size:16px" onChange="formHandlerI()">');
    }

// Selon l'évolution du marché des écrans, j'assume que tout autre écran sera un écran de résolution supérieure à 1680x1050. Donc je mets par défaut celle-là.

