// Permet de choisir l'affichage du fond de page selon la résolution d'écran du client


 if (screen.width == 1024){ 
    document.write('<body style="background:url(./lesImages/Fond-cascade_003a_1024x768.jpg) fixed">');
    } 
 else if ((screen.width == 1280) && (screen.height == 1024)){ 
    document.write('<body style="background:url(./lesImages/Fond-cascade_003a_1280x1024.jpg) fixed">');
    }
 else if (screen.width == 1280){ 
    document.write('<body style="background:url(./lesImages/Fond-cascade_003a_1280x800.jpg) fixed">');
    } 
 else if (screen.width == 1680){ 
    document.write('<body style="background:url(./lesImages/Fond-cascade_003a_1680x1050.jpg) fixed">');
    } 
 else if (screen.width == 1440){ 
    document.write('<body style="background:url(./lesImages/Fond-cascade_003a_1440x900.jpg) fixed">');
    } 
 else if (screen.width == 1152){ 
    document.write('<body style="background:url(./lesImages/Fond-cascade_003a_1152x864.jpg) fixed">');
    }
 else if (screen.width == 800){ 
    document.write('<body style="background:url(./lesImages/Fond-cascade_003a_800x600.jpg) fixed">');
    }
 else { 
    document.write('<body style="background:url(./lesImages/Fond-cascade_003a_1680x1050.jpg) fixed">');
    }  
// 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à.
