// --- Reklamni bannery ---

// ******** ZACATEK DEFINICE ODKAZU NA BANNERY *******
banner1="http://www.nove-pocitace.cz/pocitace/notebooky-pda-mda/?producer=3&sortmode=2";
banner2="http://www.nove-pocitace.cz/pocitace/notebooky-pda-mda/?producer=27&sortmode=2";
banner3="http://www.nove-pocitace.cz/pocitace/lcd-monitory/?producer=7";
banner4="http://www.nove-pocitace.cz/dum-a-zahrada/";
banner5="http://www.nove-pocitace.cz/prezentacni-technika/";
// ********* KONEC DEFINICE ODKAZU NA BANNERY ********

// ******** ZACATEK DEFINICE OBRAZU NA BANNERY *******
img1="http://www.nove-pocitace.cz/images/banery/1.gif";
img2="http://www.nove-pocitace.cz/images/banery/2.gif";
img3="http://www.nove-pocitace.cz/images/banery/3.gif";
img4="http://www.nove-pocitace.cz/images/banery/4.gif";
img5="http://www.nove-pocitace.cz/images/banery/5.gif";
// ********* KONEC DEFINICE OBRAZU NA BANNERY ********

banner();
function banner() {
r=Math.random()*10;

if (r>=1 && r<=6) {
if (r>=1 && r<2) {
document.writeln("<A HREF='"+banner1+"'><IMG SRC='"+img1+"' BORDER=0 WIDTH='468' HEIGHT='60'></A></td></tr>");
}
else
if (r>=2 && r<3) {
document.writeln("<A HREF='"+banner2+"'><IMG SRC='"+img2+"' BORDER=0 WIDTH='468' HEIGHT='60'></A></td></tr>");
}
else
if (r>=3 && r<4) {
document.writeln("<A HREF='"+banner3+"'><IMG SRC='"+img3+"' BORDER=0 WIDTH='468' HEIGHT='60'></A></td></tr>");
}
else
if (r>=4 && r<5) {
document.writeln("<A HREF='"+banner4+"'><IMG SRC='"+img4+"' BORDER=0 WIDTH='468' HEIGHT='60'></A></td></tr>");
}
else
if (r>=5 && r<6) {
document.writeln("<A HREF='"+banner5+"'><IMG SRC='"+img5+"' BORDER=0 WIDTH='468' HEIGHT='60'></A></td></tr>")
// document.writeln("<A HREF='"+banner6+"'><IMG SRC=""></A></td></tr>")
}
}
else {
banner();
};
};
//
