window.document.write(''); /* Banner-O-Matic Javascript-bannerrotation (c) 1999,2000,2001 by Christian Heilmann Free of charge with this copyright Notice and a link and/or some text explaining that this was done by me. In case of any emergency or questions mail me at info@onlinetools.org */ // Define Variables var imgpath="http://www.lippe.biz/uploads/bilder/" var bild="banner" var divtag=null var banners = new Array ('upl_64257225147305b832ca33.jpg','upl_180660342544f2c7ffc918b.gif','upl_115604543244f2e536306b0.gif','upl_171243439544f2c6af55e2d.gif','upl_147078972344f2c50c2b330.gif','upl_151118670644f2c76e5517c.gif','upl_200327179844f2c7c566f1d.gif','upl_190083198744f2c54946953.gif','upl_133970281544f2c4edd0f3f.gif','upl_32100846944f2c59a44d76.gif','upl_101389061844f2c4706bc59.gif','upl_23641498044f2c42e839dc.jpg','upl_1248467952453f703d82dc9.jpg','upl_80486437944f2c6561813e.gif','upl_48180406044f2c5e9569dd.gif','upl_190527625244f2c62a6844f.gif','upl_64926564944f2c5bc1e124.gif','upl_1807593988452f5f18ebc03.gif','upl_1938727139452f5f8a814f4.gif','upl_1448776757452f603f56eab.gif','upl_2146189431452f637756ab7.jpg','upl_267088657452f674f83c47.jpg','upl_730881561452f68a63b04f.gif','upl_579471433453f719c2e10e.jpg','upl_430330844549e593cea34.gif','upl_1400397387454b3d4267926.gif','upl_149833580447d50b507c3c3.gif') // End of Definition function banner(chosen) { if (document.images) { if (document.layers && divtag!=null) { eval('document.'+divtag+'.document.images["'+bild+'"].src = '+imgpath+banners[chosen]) } else { document [bild].src = imgpath+banners[chosen]; } } } function rotate(time) { rand=(banners.length-1)*Math.random() chosen=Math.round(rand) banner(chosen) setTimeout('rotate('+time+')',time) } rotate(3000);