// CONFIG //
var how_many_ads = 2;
var cgi_location="http://ads.disneyinternational.com/de/cgi-bin/log.pl?";
var banner_loc="/DisneyOnline/";

function banner() {
document.write('<!-- Disney ES -->')
}

var now = new Date()
var sec = now.getSeconds()
var ad = sec % how_many_ads;

ad +=1;

if (ad==1) {
url="http://www.disney.es/DisneyOnline/funzone/gamezone/mpop";
alt="Click here";
banner_img="ad_sub_ad1.gif";
}

if (ad==2) {
url="http://www.disney.es/DisneyOnline/zona_de_impresion/es_prin_home.htm";
alt="Click here";
banner_img="ad_sub_ad2.gif";
}

var ad='125_125_'+ad;
document.write('<table border="0" cellspacing="0" cellpadding="0">');
document.write('  <tr>');
document.write('    <td width="125" align="center" valign="top">');
document.write('      <a href=\"'+cgi_location+'ad='+ad+'&redirect='+url+ '"\ onmouseover=\"window.status=alt;return true"\ target=\"_top\" >');
document.write('      <img src=\"'+banner_loc+banner_img+'\" width=125 height=125 alt=\"'+alt+'\" border=0></a>');
document.write('</td>');
document.write('  </tr>');
document.write('</table>');
