<!-- This script and many more are available online from -->
<!-- The JavaScript Source!! http://javascriptsource.com -->
<!-- Begin
var how_many_ads = 3;
var now = new Date()
var sec = now.getSeconds()
var ad = sec % how_many_ads;
ad +=1;
if (ad==1) {
txt="Lampa WAŻKA";
url="wazka.html";
alt="Lampa WAŻKA";
banner="oferta/wazka1.jpg";
width="120";
height="76";
}
if (ad==2) {
txt="Lampa PINGWIN";
url="pingwin.html";
alt="Lampa PINGWIN";
banner="oferta/pingwin1.jpg";
width="120";
height="165";
}
if (ad==3) {
txt="Lampa JEŻ";
url="jez.html";
alt="Lampa JEŻ";
banner="oferta/jez2.jpg";
width="125";
height="128";
}
document.write('<a href=\"' + url + '\" target=\"_top\" class="navlink">');
document.write('' + txt + '');
document.write('<center><img src=\"' + banner + '\" width=')
document.write(width + ' height=' + height + ' ');
document.write('alt=\"' + alt + '\" border=0></a><br>');
// End -->