/* This JavaScript (Random Flash banner ads) developed by Mavicin
The Source is available at http://www.gitme.net/php/
Copyright August 2006 Mert OGUT */

var how_many_ads = 6;
var now = new Date()
var sec = now.getSeconds()
var ad = sec % how_many_ads;
ad +=1;
if (ad==1) {banner="ads/orotund.swf";
}
if (ad==2) {banner="ads/iblitho.swf";
}
if (ad==3) {banner="ads/jptp.swf";
}
if (ad==4) {banner="ads/radiofutura.swf";
}
if (ad==5) {banner="ads/rythmixx.swf";
}
if (ad==6) {banner="ads/fonda.swf";
}

document.write("<center>");
document.write('<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,0,0" width="145" height="160">');
document.write('<param name="movie" value=\"' + banner + '\" />');
document.write('<param name="menu" value="false" />');
document.write('<param name="quality" value="high" />');
document.write('<embed src=\"' + banner + '\" width="145" height="160" quality=high wmode=transparent pluginspage="http://www.macromedia.com/shockwave/download/index.cgi?P1_Prod_Version=ShockwaveFlash" type="application/x-shockwave-flash" menu="false"></embed></object>');
document.write('</center>');