function Informations(niv) {

var i=0;
while (Lignes[i]) {
 var elem=trouve(Lignes[i]);
 if (i+1 == niv) {
  if (elem) {
   elem.innerHTML ="<div class='cell-tab'><img src='../../Images/Data/SearchGuidedCursor.gif' /></div><div class='cell-tab'>Faites un choix (" +i +"/6)</div>";
  }
 }
 else {
  if (elem) {
   elem.innerHTML ="";
  }
 }
i=i+1;
}

var titre="";
var information="";

switch (niv) {
    case 2:
    		titre="Quel type de présentation recherchez vous ?";
    		information ="<table>";
				information += "<tbody><tr><td rowspan=\"2\" class=\"bold\" style=\"text-align: center;\">Chassis<br />et/ou<br />Rack industriel</td><td rowspan=\"2\"><img src='../../Images/Data/LCD1.jpg' height='37' width='44'></td><td></td><td></td><td rowspan=\"2\" class=\"bold\">Bureautique</td>";
				information += "<td>Coque plastique</td><td><img src='../../Images/Data/LCD2.jpg' height='37' width='44'></td></tr>";
				information += "<tr><td></td><td></td><td>Coque M&eacute;tal</td><td><img src='../../Images/Data/LCD3.jpg' height='37' width='44'></td></tr></table>";
    break;

    case 3:
        titre="Quel type d'alimentation recherchez vous ?";
        information="<ul><li>Courant continu : Tensions a&eacute;ronautiques possibles (28 V).</li>";
				information += "<li>Courant alternatif : Tensions 110/240Vac automatiques.</li></ul>";
				information += "<br />=> Alimentation intégrée ou en boitier externe 240Vac => 12Vcc selon modèles.<br />=> Attention, nécéssité de 12 V régulé pour les LCD.";
		break;
    
    case 4 :
        var popup_file = '"LCD_CRT_Size.html"';
        var popup_name = '"comparatif"';
        var popup_option = '"toolbar=no, width=1000, height=650, scrollbars=yes, left=10, top=10"';
        titre="<span style='float:left'>Quelle taille d'écran recherchez vous ?</span><span style='float:right'><a href='#' onclick='javascript:window.open("+popup_file +","+popup_name+","+popup_option+");'>Comparatif CRT/LCD>></a></span>";
        information="<ul><li>Très petites tailles: 1.8\", 2.4\", 3.5\", 4\", 5\" et 5.6\"</li>";
				information += "<li>Petites tailles: 6.4\", 6.8\", 7\", 8\", 8.4\", 10.4\"</li>";
				information += "<li>Tailles moyennes: 12.1\", 13.3\", 15.1\", 17\"</li>";
				information += "<li>Grandes tailles: 18.1\", 19\", 20.1\", 20.8\", 22.2\"</li></ul>";
    break;
    
    case 5 :
        titre="Quel type de signal recherchez vous ?";
        information="<div class=\"center\" style=\"padding-top: 20px;\">Si vous ne connaissez pas le type de signal, cliquez sur Inconnu, dans ce cas vous devrez obligatoirement préciser la connectique.";
    break;
    
     case 6:
        titre="Quel type de résolution recherchez vous ?";
        information="<ul><li>Faibles résolutions: CGA/Hercules/EGA(TTL) - Composite analogique(15khz) Vidéosurveillance</li>";
				information += "<li>Moyennes résolutions: 26 kHz - VGA (640x480) - SVGA (800x600)</li>";
				information += "<li>Hautes résolutions: XGA(1024x768) - SXGA(1280x1024) - HR(1600x1200) - THR(1800x1400)</li></ul>";
     break;
    
     case 7:
        titre="Quel type de connectique recherchez vous ?";
        information = "<table><tr><td>Subd 9pt</td><td><img src='../../Images/Data/Subd9.jpg' /></td><td></td><td>BNC</td><td><img src='../../Images/Data/BNC.jpg' /></td><td>DVI</td><td></td><td><img src='../../Images/Data/DVI.jpg' /></td></tr>";
        information += "<tr><td>Subd 15pt</td><td><img src='../../Images/Data/Subd15.jpg' /></td><td></td><td>RCA</td><td><img src='../../Images/Data/RCA.jpg' /></td></tr></table>";
     break;
}
libel_title = trouve("box-title");
libel_title.innerHTML = titre;

libel_text = trouve("box-text");
libel_text.innerHTML = information;


}

