<!-- Begin
var how_many_ads = 4;
var now = new Date()
var sec = now.getSeconds()
var ad = sec % how_many_ads;
ad +=1;
if (ad==1) {
txt="Getaway";
url="http://www.info-desk.co.za/links/GW.html";
alt="Getaway";
banner="http://www.info-desk.co.za/images/magazines/GW.jpg";
width="120";
height="160";
}
if (ad==2) {
txt="Go";
url="http://www.info-desk.co.za/links/GO.html";
alt="Go";
banner="http://www.info-desk.co.za/images/magazines/GO.jpg";
width="120";
height="160";
}
if (ad==3) {
txt="Country Life";
url="http://www.info-desk.co.za/links/CTLF.html";
alt="Country Life";
banner="http://www.info-desk.co.za/images/magazines/CTLF.jpg";
width="120";
height="160";
}
if (ad==4) {
txt="Wegbreek";
url="http://www.info-desk.co.za/links/WEG.html";
alt="Wegbreek";
banner="http://www.info-desk.co.za/images/magazines/WEG.jpg";
width="122";
height="160";
}
document.write('<TABLE cellpadding="0" cellspacing="0" border="0" width="120"><tr><td>');
document.write('</td><td>');
document.write('<a href=\"' + url + '\" TARGET="_TOP">');
document.write('<img src=\"' + banner + '\" width=')
document.write(width + ' height=' + height + ' ');
document.write('alt=\"' + alt + '\" border=0><br>');
document.write('<small><b>' + txt + '</b></small></a>');
document.write('</td></tr></table>');
// End -->

