var sp = new Array();
// The most specific urls should be at the top, least specific at bottom.
// Format is: 1)Url of page, 2)sponsor graphic, 3)Link for sponsor graphic.
// sp[sp.length] = new Array("https://cms-live.tiscali.co.uk","sky2.gif","#");
sp[sp.length] = new Array("http://www.tiscali.co.uk/games/gambling/","small_games_sub_spons.gif","http://www.thespinroom.com/spinroom?l=1&page=sr_index&OID=230&option=reloadpage");
sp[sp.length] = new Array("http://www.tiscali.co.uk/business/sme/","small_biz_sub_spons.gif","http://ad.uk.doubleclick.net/clk;4723598;7588336;d?http://www.businesslink.org");
sp[sp.length] = new Array("http://www.tiscali.co.uk/business/sme/","small_biz_sub_spons.gif","http://ad.uk.doubleclick.net/clk;4723598;7588336;d?http://www.businesslink.org");


function SponsorGraphic() {
  var img = "";
  var url = "";
  var url2 = "";
  var loc = ""+document.location;
  var i;
  for(i = 0;i < sp.length;i++) {
    var obj = sp[i];
    if(obj.length >= 3) {
      if(loc.indexOf(obj[0]) == 0) {
        img = obj[1];
        url = obj[2];
        if(obj.length == 4) {
          url2 = obj[3];
        }
        break;
      }
    }
  }
  if((img != "") && (url != "")) {
    var res = '';
    if(url2) {
      res += '<MAP name="sponsor"><AREA shape="rect" coords="0,0,209,25" href="'+url+'"><AREA shape="rect" coords="209,0,418,25" href="'+url2+'"></MAP>';
    }
    res += '<TABLE cellpadding=0 cellspacing=0 border=0 width="100%"  style="border-left: solid #8A8A8A 0 0 0 1;"><TR><TD width="1%" background="http://www.tiscali.co.uk/ads/sponsors/images/spon_bg.gif"><img src="http://www.tiscali.co.uk/images/t.gif" width="1" height="25" alt="" border="0"></TD><TD width="98%" background="http://www.tiscali.co.uk/ads/sponsors/images/spon_bg.gif"><img src="http://www.tiscali.co.uk/images/t.gif" width="1" height="25" alt="" border="0"></TD><TD width="1%" align="right" background="http://www.tiscali.co.uk/ads/sponsors/images/spon_bg.gif"><A href="'+url+'" target="_blank"><IMG src="http://www.tiscali.co.uk/ads/sponsors/images/'+img+'" width=418 height=25 border=0 alt="sponsored by"'+(url2 ? ' usemap=#sponsor' : '')+'></A></TD></TR></TABLE><img src="http://www.tiscali.co.uk/images/t.gif" width="1" height="10" alt="" border="0"><BR>';
    document.write(res);
  }
}