<!--Rotating Banner Script-->
if (document.images)

{
// First create an array with links to the images you want to
// display as banners.
adImages = new Array
(
"http://www.djronlove.com/images/_BannerAds/ripricky.png",
"http://www.djronlove.com/images/_BannerAds/bnr_712web.png",
"http://www.tqlkg.com/image-3844290-10553132",//BPlay
"http://www.awltovhc.com/image-3844290-10522122", //TickCo
"http://www.djronlove.com/images/_BannerAds/ripricky.png",
"http://www.lduhtrp.net/image-3005141-10665902",//BackgroundCheck
"http://www.djronlove.com/images/_BannerAds/712_creditdispute.png",
"http://www.awltovhc.com/image-3844290-10379078", //GoDaddy
"http://www.djronlove.com/images/_BannerAds/banner_mj.png"
);

// When the user clicks on a banner it should take the user to
// the website of that company. Therefore we create another
// array with a list of URLs. Keep the order the same as images.
adURLs = new Array
(
"www.recoveryradiolive.com",
"www.712groupinc.com/webdesign",
"www.jdoqocy.com/click-3844290-10715138",//BPlay
"www.kqzyfj.com/click-3844290-10522122", //TickCo
"www.recoveryradiolive.com",
"www.anrdoezrs.net/click-3005141-10665902",//BackgroundCheck
"www.712groupinc.com/credit",
"www.dpbolvw.net/click-3844290-10379078", //GoDaddy
"www.djronlove.com/playlists/playlist_mj.html"
);

thisAd = 0;
}
// The following function cycles through each banner image.
// Notice the use of the variable thisAd to go from 0 to 2 and then
// back to 0. JavaScript has an object called document whose
// member adBanner can be set to the current banner to display.

function cycleAds()
{
    if (document.images)
    {
        if (document.adBanner.complete)
        {
            if (++thisAd == adImages.length)
                thisAd = 0;

            document.adBanner.src = adImages[thisAd];
        }
    }

    // change to next banner every 15 seconds
    setTimeout("cycleAds()", 5000);
}
// This function is used to direct the user to the website when
// the user clicks on a particular banner image.

function gotoAd()
{
	window.open("http://" + adURLs[thisAd],"","width=1000,height=700,status=yes,toolbar=no,menubar=no,left=100,top=100, scrollbars=yes,resizable=yes");
}

/*Commented out RDM
function gotoAd()
{
    //document.location.href = "http://" + adURLs[thisAd]; window.open("http://" + adURLs[thisAd],"_self");
}
*/
<!--END Rotating Banner Script-->