
var maxsize = 6;
var iwidth = 85;
var iheight = 130;
var link = new makeArray(maxsize);
link[0] = new LinkObj("/index/section/241/0/0/FINLIFE+++OCHRONA.html", "ochrona", "_top","/img/promocje_napis3.gif");
link[1] = new LinkObj("/index/section/239/0/0/FINLIFE+++FUNDUSZ.html", "fundusz", "_top","/img/promocje_napis2.gif");
//link[2] = new LinkObj("prod_skarb.php", "skarb", "_top","/img/promocje_napis4.gif");
//link[3] = new LinkObj("prod_kapital.php", "kapital", "_top","/img/promocje_napis5.gif");
link[2] = new LinkObj("/index/section/240/0/0/FINLIFE+++PRYMUS.html", "prymus", "_top","/img/promocje_napis6.gif");
link[3] = new LinkObj("/index/section/234/0/0/FinLife+++Bezpieczna+Grupa.html", "bezpieczna grupa", "_top","/img/promocje_napis7.gif");
link[4] = new LinkObj("/index/section/235/0/0/FinLife+++Bezpieczni+Razem.html", "bezpieczni rzem", "_top","/img/promocje_napis8.gif");
link[5] = new LinkObj("/index/section/237/0/0/Finlife+BEZPIECZNY+KREDYT.html", "dealer kredyt", "_top","/img/promocje_napis9.gif");
var n = 0;

function LinkObj(url, description, target, img) {
  this.url = url;
  this.description = description;
  this.target = (target != null) ? target : "_top";
  this.image = img;
  return this;
}

function gotoUrl(x) {
  if (link[x].target != null)
    window.open(link[x].url, link[x].target);
  else
    location.href = link[x].url;
}

function makeArray(size) {
  this.length = size;
  return this;
}
function showStatus(x) {
  window.status = link[x].description;
}
function getImageName(x) {
  return link[x].image;
}
while (1) {
  n = Math.round(Math.random() * 10);
  if (n >= 0 && n < maxsize)
    break;
}
var 
htmltag = "<a href='javascript:gotoUrl(" + n + ")' OnMouseOver=\"showStatus(" + n + "); return true\" "; htmltag += "OnMouseOut=\"window.status=''\">"; 
htmltag += "<img border=0 width=" + iwidth + " height=" + iheight + "name=\"bannerimg\" src=\"" + getImageName(n) + "\"></a>";

