// JavaScript Document
function MM_openBrWindow(theURL,winName,features) { //v2.0
  window.open(theURL,winName,features);
}

//////// Begin Banner Rotation //////
// Copyright by Dauerstress - Alles kostenlos fuer die eigene Homepage
// http://www.dauerstress.de
// Die Verwendung ist kostenlos, solange dieser Copyrighthinweis unverändert erhalten bleibt

Banner = new Array();
URL = new Array();

Banner[1] = "product/13/13_35.jpg";
URL[1]    = "product_13_35.html";

Banner[2] = "product/13/13_36.jpg";
URL[2]    = "product_13_36.html";

Banner[3] = "product/13/13_37.jpg";
URL[3]    = "product_13_37.html";

Banner[4] = "product/13/13_38.jpg";
URL[4]    = "product_13_38.html";

Anzahl=4;  // Gesamtanzahl Banner in der Rotation
Zeit = 4;  // 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');*/

window.location.href=URL[i];
}
///////// Ende Banner Rotation
