function Tip()
{
var pocet = 50; //Zde zadejte celkový počet tipů
var tip= new Array(pocet);
var cislo= new Array(pocet);
tip[0] = "guaranteed short-circuit resistance"; //Zde zadejte jednotlivé tipy
cislo[0] = "1";
tip[1] = "the guarantee period of 36 calendar months";
cislo[1] = "2";
tip[2] = "an excellent ratio between price and quality";
cislo[2] = "3";
tip[3] = "a high-speed switch-off  - under 5ms";
cislo[3] = "4";
tip[4] = "central position of defect indication";
cislo[4] = "5";
tip[5] = "simultaneous switching at multi-module types";
cislo[5] = "6";
tip[6] = "instantaneous switching of contacts, independent on the rate of lever motion";
cislo[6] = "7";
tip[7] = "extraordinary short dimensions";
cislo[7] = "8";
tip[8] = "movable terminals are equipped with a locking bar avoiding an incorrect placing of conductors";
cislo[8] = "9";
tip[9] = "unique extinguishing chamber - world patent";
cislo[9] = "10";
tip[10] = "very easy running of the lever when being switched-on";
cislo[10] = "11";
tip[11] = "unique auxiliary mechanism for fastening and removal of the MCB from the DIN strip";
cislo[11] = "12";
tip[12] = "essential increase of vertical stability on the DIN strip";
cislo[12] = "13";
tip[13] = "MCB´s body stiffness even at the multi-module design";
cislo[13] = "14";
tip[14] = "very high torsional-stressing resistance of terminals";
cislo[14] = "15";
tip[15] = "round, aesthetical design";
cislo[15] = "16";
tip[16] = "the place for two-line inscription is protected by a swing sight glass with arrestment";
cislo[16] = "17";
tip[17] = "coloured indication of contact condition with dust-protection";
cislo[17] = "18";
tip[18] = "universal terminals for different interconnecting strips";
cislo[18] = "19";
tip[19] = "terminal modification resistant to inter-phase short-circuit";
cislo[19] = "20";
tip[20] = "tolerance and dilatation not affecting the function";
cislo[20] = "21";
tip[21] = "press pieces from only two-side moulds";
cislo[21] = "22";
tip[22] = "unexchangeability of component";
cislo[22] = "23";
tip[23] = "universal single-module design enabling any combination";
cislo[23] = "24";
tip[24] = "complete design conception for other products";
cislo[24] = "25";
tip[25] = "patent protection";
cislo[25] = "26";
tip[26] = "scaling of values and AC/DC design";
cislo[26] = "27";
tip[27] = "variable connection of input or output";
cislo[27] = "28";
tip[28] = "it is not possible to change the characteristic by fall shock";
cislo[28] = "29";
tip[29] = "high operational shock-resistance";
cislo[29] = "30";
tip[30] = "higher protection of MCB itself";
cislo[30] = "31";
tip[31] = "a thorough – multiple output checking of la parameters of every MCB";
cislo[31] = "32";
tip[32] = "possibility of an easy interconnection with other devices";
cislo[32] = "33";
tip[33] = "big cross-sections of terminals";
cislo[33] = "34";
tip[34] = "fixed design of terminals";
cislo[34] = "35";
tip[35] = "the screws of the clip terminals are protected against fall out from the body";
cislo[35] = "36";
tip[36] = "the possibility to interconnect the miniature circuit breakers by means of interconnecting forked or reed (rack) strips";
cislo[36] = "37";
tip[37] = "attachment onto a DIN strip with different thickness";
cislo[37] = "38";
tip[38] = "attachment onto the DIN strip using the pawl final arrestment";
cislo[38] = "39";
tip[39] = "possibility to attach the MCB onto a flat surface without DIN strip ";
cislo[39] = "40";
tip[40] = "coloured control levers";
cislo[40] = "41";
tip[41] = "the possibility to seal the lever in the ON and OFF positions";
cislo[41] = "42";
tip[42] = "an easy link-up of different auxiliary contacts, releases etc. from both sides of the circuit breaker ";
cislo[42] = "43";
tip[43] = "association of a MCB and a current protector";
cislo[43] = "44";
tip[44] = "non-anonymous manufacture ";
cislo[44] = "45";
tip[45] = "they work reliably with a frequency of both 50, and 60 Hz.";
cislo[45] = "46";
tip[46] = "unperturbed deliveries of our miniature circuit breakers involved in various products - CB Test";
cislo[46] = "47";
tip[47] = "process of manufacture";
cislo[47] = "48";
tip[48] = "packing and labeling";
cislo[48] = "49";
tip[49] = "deliveries exactly in accordance with your orders - not conditioned by purchases of whole cases ";
cislo[49] = "50";
var vyber_tip = Math.floor(pocet * Math.random()); //Náhodně vybere jeden tip
//var prouzek ="<b>Výhoda"+cislo[vyber_tip]+"</b>: "+ tip[vyber_tip];
document.all.nadpis.innerHTML = "<b>advantage<br>#"+cislo[vyber_tip]+"&nbsp;</b>"; //Zobrazí tip na stránce. 
document.all.prednost.innerHTML = "&nbsp;"+tip[vyber_tip];; //Zobrazí tip na stránce. 
window.setTimeout("Tip()", 10000); // volá sebe samu odloženou o sekundu
}
