function rtbanner(){
adnum = Math.random()*7;
adnum2 = Math.round(adnum);
//	if (adpop<10){
//	adName="home_ad0"+adnum;
//	}
//adName="home_ad0"+adnum2;
//document.write("<IMG SRC='highbanner/"+adName+".gif' WIDTH=120 HEIGHT=60 ALT='click here for fun!'>");
adPop=adnum2.toString();
	switch(adPop){
case '1': document.write("<A HREF=http://www.gothicchicago.com TARGET=_new><img src='rtbanner/gothchicago.jpg' WIDTH=120 HEIGHT=60 ALT='Gothic Chicago'>"); break
case '2': document.write("<A HREF=http://www.pocketfullofposiez.com TARGET=_new><img src='rtbanner/posiez.jpg' WIDTH=120 HEIGHT=60 ALT='Pocket Full of Posiez'>"); break
case '3': document.write("<A HREF=http://www.spookybuttons.com TARGET=_new><IMG SRC='rtbanner/spookybuttons.jpg' WIDTH=120 HEIGHT=60 ALT='spookybuttons.com' BORDER=0></A>"); break
case '4': document.write("<A HREF=http://www.darxxide.com/gc TARGET=_new><IMG SRC='rtbanner/groundcontrol.jpg' WIDTH=120 HEIGHT=60 ALT='Ground Control' BORDER=0></A>"); break
case '5': document.write("<A HREF=http://www.gothicchicago.com TARGET=_new><img src='rtbanner/gothchicago.jpg' WIDTH=120 HEIGHT=60 ALT='Gothic Chicago'>"); break
case '6': document.write("<A HREF=http://www.pocketfullofposiez.com TARGET=_new><img src='rtbanner/posiez.jpg' WIDTH=120 HEIGHT=60 ALT='Pocket Full of Posiez'>"); break
case '7': document.write("<A HREF=http://www.spookybuttons.com TARGET=_new><IMG SRC='rtbanner/spookybuttons.jpg' WIDTH=120 HEIGHT=60 ALT='spookybuttons.com' BORDER=0></A>"); break
case '8': document.write("<A HREF=http://www.darxxide.com/gc TARGET=_new><IMG SRC='rtbanner/groundcontrol.jpg' WIDTH=120 HEIGHT=60 ALT='Ground Control' BORDER=0></A>"); break
default: document.write("<A HREF=http://www.batsday.net TARGET=_new><IMG SRC='rtbanner/minilink.gif' WIDTH=88 HEIGHT=31 ALT='Bats Day' BORDER=0></A>");
	}
}


// :::::::::::::::::::::::WRITTEN BY ANDREW HOLGUIN, angelus@kontrol.net
// :::::::::::::::::::::::INSTRUCTIONS::::::::::::::::::::::::::::::::
// :::::::::
// ::::::::: Decide how many ads you want to rotate.
// ::::::::: Edit the line that says "adnum = Math.random()*3",
// ::::::::: but instead of 3, use the number of ads minus 1.
// ::::::::: This will generate a number between 0 and your number,
// ::::::::: accounting for the fact that "0" is the starting position
// :::::::::
// ::::::::: Next, look for the action called "switch" and modify
// ::::::::: each case to suit your needs. Be aware of Javascript conventions
// ::::::::: regarding punctuation.
