﻿Banner = new Array();
URL = new Array();

Banner[1] = "bilder/werbung/werbung.gif";
URL[1]    = "http://www.elektro-hu.ch/dokumente/werbeblatt_neu.pdf";
Banner[2] = "bilder/werbung/ecomode_plus.gif";
URL[2]    = "http://www.elektro-hu.ch/dokumente/ecomode-plus.pdf";
Anzahl=2;  // Gesamtanzahl Banner in der Rotation
Zeit = 10;  // Anzeigedauer in Sekunden

i = 0;
Zeit=Zeit*1000;
function rotate()
{
i++;
if(i > Anzahl) i=1;
document.images.banner.src = Banner[i];
window.setTimeout("rotate()",Zeit);
}

function bannerklick() {
window.open(URL[i],i,'toolbar=1,location=1,directories=1,status=1,menubar=1,scrollbars=1,resizable=1,fullscreen=0,width=800,height=600,top=0,left=0');
}
