/*
 +---------------------------------------------------------+
 | 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/hannibalbanner.gif';
    ad[1]='http://www.communityexplore.com/banners/bestwesternmountvernoninnbanner.jpg';
    ad[2]='http://www.communityexplore.com/banners/parklandbanner.gif';
    ad[3]='http://www.communityexplore.com/banners/mitchellfishmarketbanner.gif';
    ad[4]='http://www.communityexplore.com/banners/supermenfadestofrosbanner.jpg';
    
    var links=new Array()
    //insert here your links
    links[0]='http://www.communityexplore.com/banners/test/ccount/click.php?id=30';
    links[1]='http://www.communityexplore.com/banners/test/ccount/click.php?id=31';
    links[2]='http://www.communityexplore.com/banners/test/ccount/click.php?id=40';
    links[3]='http://www.communityexplore.com/banners/test/ccount/click.php?id=41';
    links[4]='http://www.communityexplore.com/banners/test/ccount/click.php?id=45';


    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);

