<!-- Begin
var how_many_ads = 4;
var now = new Date()
var sec = now.getSeconds()
var ad = sec % how_many_ads;
ad +=1;

code = '<img src="/img/yleiskuva.jpg" width="300" height="208" border="1" alt="">';

if (ad==1) {
code='<img src="/img/yleiskuva.jpg" width="300" height="208" border="1" alt="">';
}
if (ad==2) {
code='<img src="/img/yleiskuva2.jpg" width="300" height="212" border="1" alt="">';
}
if (ad==3) {
code='<img src="/img/yleiskuva3.jpg" width="300" height="211" border="1" alt="">';
}
if (ad==4) {
code='<img src="/img/yleiskuva4.jpg" width="300" height="213" border="1" alt="">';
}



document.write('<p>' + code + '</p>');
