// ****************************************
//   Guillermo BT, Noviembre 1997 . Madrid.
// ----------------------------------------
//   Netmani@ No. 23.
//   http://jsbone.fadlan.com
//   guillerbt@fadlan.com
// ****************************************

var aBanner = new Array();

// MODIFICACIONES/ADICIONES, AQUI!:


aBanner[1] = "/images/banner-tarot.gif;http://fadlan.com/homes/tarot/";
aBanner[2] = "/images/banner1.gif;http://fadlan.com/redir";
aBanner[3] = "/images/banner-tarot-01.gif;http://fadlan.com/homes/tarot/";
aBanner[4] = "/images/banner-tarot.gif;http://fadlan.com/homes/tarot/";
aBanner[5] = "/images/banner-tarot2.gif;http://fadlan.com/homes/tarot/";
aBanner[6] = "/images/banner-tarot-01.gif;http://fadlan.com/homes/tarot/";
// -------------------------------------------
var cuantosHay = aBanner.length - 1;


function PonerAnuncio (i) {
  var tmp  = aBanner[i].split (';');
  var foto = "<img src=" + tmp[0] + " border=0>";
  var codigo = "<a target=_top href=" + tmp[1] + ">" + foto + "</a>";
  var codigo2  = "<table border=0 width=480 height=60><tr>";
      codigo2 += "<td bgcolor=#000000  align=center>"+codigo+"</td></tr></table>";

  return codigo;
}


