/*
 +---------------------------------------------------------+
 | Ad Simple                 Copyright www.YugDesign.com   |
 +---------------------------------------------------------+
 | This program may be used and hosted free of charge by   |
 |anyone for personal purpose as long as this copyright    |
 |notice remains intact.                                   |
 +---------------------------------------------------------+
*/

function print_banner() {
    var img_width = "150";
    var img_height = "500";
    var img_title = "Click Here";
    
    var ad=new Array()
    //insert here your images src
    ad[0]='http://www.communityexplore.com/banners/villagegreenbanner.jpg';
    ad[1]='http://www.communityexplore.com/banners/heritage-banner.gif';
    ad[2]='http://www.communityexplore.com/banners/leonardfuelsbanner.jpg';
    ad[3]='http://www.communityexplore.com/banners/simpleimprovementsbanner.jpg';
    ad[4]='http://www.communityexplore.com/banners/calvarychristianacadamybanner.jpg';
    ad[4]='http://www.communityexplore.com/banners/blairandsonbanner.jpg';
    ad[5]='http://www.communityexplore.com/banners/herlehyhomebuildingcentreb.jpg';
    ad[6]='http://www.communityexplore.com/banners/cobrapoolsbanner.jpg';
    ad[7]='http://www.communityexplore.com/banners/kingstontentandpartyrentalbanner.gif';
    
    var links=new Array()
    //insert here your links
    links[0]='http://www.communityexplore.com/banners/test/ccount/click.php?id=23';
    links[1]='http://www.communityexplore.com/banners/test/ccount/click.php?id=24';
    links[2]='http://www.communityexplore.com/banners/test/ccount/click.php?id=25';
    links[3]='http://www.communityexplore.com/banners/test/ccount/click.php?id=26';
    links[4]='http://www.communityexplore.com/banners/test/ccount/click.php?id=27';
    links[4]='http://www.communityexplore.com/banners/test/ccount/click.php?id=29';
    links[5]='http://www.communityexplore.com/banners/test/ccount/click.php?id=33';
    links[6]='http://www.communityexplore.com/banners/test/ccount/click.php?id=39';
    links[7]='http://www.communityexplore.com/banners/test/ccount/click.php?id=46';

    var xy=Math.floor(Math.random()*ad.length);
    document.getElementById('sidebanner_test').innerHTML = '<a href="'+links[xy]+'" target="_blank"><img src="'+ad[xy]+'" width="'+img_width+'" height="'+img_height+'" alt="'+img_title+'"></a>';
}

print_banner();
setInterval('print_banner()', 10000);

