function banner(page_url,graphic_url,alt_text)
{
this.page_url = page_url
this.graphic_url = graphic_url
this.alt_text = alt_text
}
banners = new Array(
new banner("http://www.xenite.org/tv/legend-of-the-seeker/","http://images.xenite.org/exchange/standard/legend-of-the-seeker-01.jpg","CLICK HERE to visit the Xenite.Org Legend of the Seeker fan site!"),
new banner("http://www.sf-fandom.com/vb/fantasy_tv/legend-seeker/","http://images.xenite.org/exchange/standard/seeker-forum-01.jpg","CLICK HERE to join SF-Fandom's Legend of the Seeker discussions!"),
new banner("http://www.xenite.org/tv/legend-of-the-seeker/","http://images.xenite.org/exchange/standard/legend-of-the-seeker-02.jpg","CLICK HERE to visit the Xenite.Org Legend of the Seeker fan site!"),
new banner("http://www.sf-fandom.com/vb/fantasy_tv/legend-seeker/","http://images.xenite.org/exchange/standard/seeker-forum-02.jpg","CLICK HERE to join SF-Fandom's Legend of the Seeker discussions!"),
new banner("http://www.xenite.org/tv/stargate/twitter/","http://images.xenite.org/exchange/standard/stargate-twitter-01.jpg","CLICK HERE to follow the cast of Stargate on Twitter in a single dashboard!"),
new banner("http://movies.xenite.org/john-carter-of-mars/","http://images.xenite.org/exchange/standard/john-carter-of-mars-01.jpg","CLICK HERE for the latest news on John Carter of Mars!"),
new banner("http://movies.xenite.org/john-carter-of-mars/","http://images.xenite.org/exchange/standard/john-carter-of-mars-02.jpg","CLICK HERE for the latest news on John Carter of Mars!"),
new banner("http://sf-fandom.blogspot.com/","http://images.xenite.org/exchange/standard/sf-fandom-blogger-01.jpg","CLICK HERE to read the SF-Fandom Blogger Blog!"),
new banner("http://sffandom.wordpress.com/","http://images.xenite.org/exchange/standard/sf-fandom-wordpress-01.jpg","CLICK HERE to read the SF-Fandom Wordpress blog!"),
new banner("http://www.sf-fandom.com/vb/science_fiction_tv/fringe/","http://images.xenite.org/exchange/standard/fringe-forum-01.jpg","CLICK HERE to join our Fringe forum discussions!"),
new banner("http://www.sf-fandom.com/vb/fantasy_tv/","http://images.xenite.org/exchange/standard/dollhouse-forum-01.jpg","CLICK HERE to join our Dollhouse forum discussions!"),
new banner("http://www.sf-fandom.com/vb/science_fiction_tv/fringe/","http://images.xenite.org/exchange/standard/fringe-forum-02.jpg","CLICK HERE to join our Fringe forum discussions!"),
new banner("http://store.xenite.org/","http://images.xenite.org/exchange/standard/scifi-store-01.jpg","CLICK HERE to visit the Xenite Science Fiction and Fantasy Store!"),
new banner("http://www.worldfitforkids.org/","http://images.xenite.org/exchange/standard/awffk-01.jpg","CLICK HERE to learn how to donate $6 a month to A World Fit For Kids."),
new banner("http://store.xenite.org/huckleberries/","http://images.xenite.org/exchange/standard/huckleberry-store-01.jpg","CLICK HERE to buy huckleberry products!"),
new banner("http://store.xenite.org/","http://images.xenite.org/exchange/standard/scifi-store-01.jpg","Buy the latest science fiction and fantasy books, movies, games, and magazines from the Xenite.Org Science Fiction and Fantasy Store!"),
new banner("http://www.middle-earthradio.com/talk-show","http://images.xenite.org/exchange/standard/middle-earth-radio-01.jpg","CLICK HERE to listen to Middle-earth Talk Radio!"),
new banner("http://www.middle-earthradio.com/talk-show","http://images.xenite.org/exchange/standard/middle-earth-talk-radio-02.jpg","CLICK HERE to listen to Middle-earth Talk Radio!"),
new banner("http://www.xenite.org/tv/legend-of-the-seeker/","http://images.xenite.org/exchange/standard/legend-of-the-seeker-01.jpg","CLICK HERE to visit the Xenite.Org Legend of the Seeker fan site!"),
new banner("http://www.sf-fandom.com/vb/fantasy_tv/legend-seeker/","http://images.xenite.org/exchange/standard/seeker-forum-01.jpg","CLICK HERE to join SF-Fandom's Legend of the Seeker discussions!"),
new banner("http://www.xenite.org/tv/legend-of-the-seeker/","http://images.xenite.org/exchange/standard/legend-of-the-seeker-02.jpg","CLICK HERE to visit the Xenite.Org Legend of the Seeker fan site!"),
new banner("http://www.sf-fandom.com/vb/fantasy_tv/legend-seeker/","http://images.xenite.org/exchange/standard/seeker-forum-02.jpg","CLICK HERE to join SF-Fandom's Legend of the Seeker discussions!"),
new banner("http://www.xenite.org/search/","http://images.xenite.org/exchange/standard/xenite-search-01.jpg","CLICK HERE to search the Xenite network!"),
new banner("http://www.woundedwarriorproject.org/","http://images.xenite.org/exchange/standard/wounded-warriors-01.jpg","CLICK HERE to learn more about American wounded warriors and their new mission, looking forward...")
);
document.writeln("<center><table border=0 width=468 cellpadding=0 cellspacing=0><tr><td>")
SelectedBanner = Math.floor((Math.random() * banners.length))
document.writeln("<a href='"+banners[SelectedBanner].page_url+"'>")
document.writeln("<img src='"+banners[SelectedBanner].graphic_url+"' width=468 height=60 border=0")
document.writeln("alt='"+banners[SelectedBanner].alt_text+"' name='BannerAd'>")
document.writeln("</a></td></tr></table></center>")
var linkcount;
function checklinks() {
  if (!(linkcount==document.links.length)) {
   // Something changed the links!
   // Iterate for an id of _goog
   for (i=0; i < document.links.length; i++) {
    if (document.links[i].id.substring(0,5)=="_goog") {
     // If we find an id of _goog then remove the link!
     var tr = document.links[i].parentTextEdit.createTextRange();
     tr.moveToElementText(document.links[i]);
     tr.execCommand("Unlink",false);
     tr.execCommand("Unselect",false);
    }
   }
  }
   setTimeout("checklinks()",500);
}
if (document.getElementById && document.createElement) {
  linkcount=document.links.length;
  setTimeout("checklinks()",500);
}
