// CREDITS:
// Worlds most simple simple banner rotating script
// by Urs Dudli and Peter Gehrig 
// Copyright (c) 2000 Peter Gehrig and Urs Dudli. All rights reserved.
// Permission given to use the script provided that this notice remains as is.
// Additional scripts can be found at http://www.24fun.com/fast/index.html
// info@24fun.com
// 10/4/2000

// IMPORTANT: 
// If you add this script to a script-library or script-archive 
// you have to add a link to http://www.24fun.com/fast/index.html on the webpage 
// where this script Script will be running.

// INSTRUCTIONS: 
// Got to http://www.24fun.com/fast/index.html, open category 'utility' 
// and download the scriptfiles with colorized instructions 
// for easy configuration


// how long shall each banner appear? rotating interval  in seconds
var rotating_interval=12

// vertical position of banner: distance to the top margin, pixels
var bannerTopPosition=460
// horizontal position of banner: distance to the left margin, pixels
var bannerLeftPosition=160
var sponsor=new Array()
var i_sponsor=0
var randomvalue
rotating_interval=rotating_interval*1000

// banner code for caloradhotline
sponsor[i_sponsor]='<a href="http://caloradhotline.bizhosting.com/indexorig.html" target="_blank"><img src="http://caloradhotline.bizhosting.com/caloradbanner.gif" width="468" height="60" alt="Click here for the Calorad HOtline Online" border="0"></a>'
i_sponsor++

// banner code for classyclicks
sponsor[i_sponsor]='<a href="http://www.classyclicks.net/pages/index.php?refid=donder2"><img src="http://www.classyclicks.net/images/banner3.gif" border="0" alt="Classy Clicks-Click With Class!!"></a>'
i_sponsor++

// banner code for atozfittness.com
sponsor[i_sponsor]='<a href="http://www.atozfitness.com" target="_blank"><img src="http://www.atozfitness.com/atozbanner.gif" width="440" height="60" alt="A to Z Fitness" border="0"></a>'
i_sponsor++

// banner code for gambeling federation
sponsor[i_sponsor]='<a href="http://www.gamblingfederation.com/~92437o3A/P/en/" target="_blank"><img src="http://caloradhotline.bizhosting.com/affiliate-306_1101.gif" width="468" height="60" alt="You can won your Own Casino Vegas Style" border="0"></a>'
i_sponsor++

// banner code for gambeling federation2
sponsor[i_sponsor]='<a href="http://www.gamblingfederation.com/~92437o3A/en/" target="_blank"><img src="http://caloradhotline.bizhosting.com/joesjackpot-040_1665.gif" width="468" height="60" alt="Win Money Vegas Style" border="0"></a>'
i_sponsor++

// banner code for sports betting
sponsor[i_sponsor]='<a href="http://www.goodasgoldcasino.com/?CampaignID=41287" target="_blank"><img src="http://caloradhotline.bizhosting.com/468x60_vip_nfl_04_03.gif"></a>'
i_sponsor++

// banner code for vip profits
sponsor[i_sponsor]='<a href="http://www.goodasgoldcasino.com/?CampaignID=41158" target="_blank"><img src="http://caloradhotline.bizhosting.com/468x60_gag_2.gif"></a>'
i_sponsor++

// banner code for vip profits poker texas holdem
sponsor[i_sponsor]='<a href="http://www.vippoker.com/?CampaignID=41408" target="_blank"><img src="http://caloradhotline.bizhosting.com/468x60_VIPpoker_shoot_05_311.gif"></a>'
i_sponsor++

// banner code for linkcounter
sponsor[i_sponsor]='<A HREF="http://www.linkcounter.com/go.php?linkid=171140" target="_blank"><><IMG SRC="http://caloradhotline.bizhosting.com/caloradbanner.gif" ALT="Link" BORDER="0"></A>'
i_sponsor++

// banner code for email-lotto
sponsor[i_sponsor]='<A HREF="http://www.email-lotto.com/member/21584/index.shtml" target="_parent"><img src="http://www.email-lotto.com/banners/banner1.gif" border="0" alt="Email-Lotto....Best Free Game on the Net!"></A>'
i_sponsor++

// banner code for bride name change kit
sponsor[i_sponsor]='<a href="http://www.qksrv.net/click-308304-349983" target="_blank"><img src="http://www.qksrv.net/image-308304-349983" width="468" height="60" alt="banner 2" border="0"></a>'
i_sponsor++

// banner code for Link Partners
sponsor[i_sponsor]='<a href="http://www.linkpartners.com" target="_blank"><img border="0" src="http://www.linkpartners.com/lp_banr1.gif" alt="LinkPartners.com - The Easy Way to Find Link Swap Partners" width="468" height="60"></a>'
i_sponsor++

// banner code for passionup love letter poems
sponsor[i_sponsor]='<a href="http://www.qksrv.net/click-308304-166215" target="_blank" ><img src="http://www.qksrv.net/image-308304-166215" width="468" height="60" alt="secret love letters, love poems, romance" border="0"></a>'
i_sponsor++


function positionbanner() {
    if (document.all) {
        document.all.banner.style.posTop=bannerTopPosition
		document.all.banner.style.posLeft=bannerLeftPosition
    }
    if (document.layers) {
        document.banner.top=bannerTopPosition
		document.banner.left=bannerLeftPosition
    }
    showbanner()
}

function showbanner() {
    randomvalue=Math.round((sponsor.length-1)*Math.random())
	var content=sponsor[randomvalue]
    if (document.all) {
        banner.innerHTML=content
    }
    if (document.layers) {
        document.banner.document.write(content)
		document.banner.document.close()
    }
    setTimeout("showbanner()",rotating_interval)
}
document.write('<DIV id="banner" style="position:absolute">&nbsp;</DIV>')
document.close()

window.onload=positionbanner