function loadab() 
{ 
  index1 = 0;
  listofimages = new Array(1);
  listofimages[0] = new Image(468,60)
  listofimages[0].src = "/images/spon/najade.gif"
  thetimer = setTimeout("changeimage()", 3000);
} 
function changeimage()
{ 
  index1 = index1 + 1
  if (index1 == "3") 
    { 
      index1 = 0 
    } 
  imagesource = listofimages[index1].src
  window.document.banner1.src = imagesource
  thetimer = setTimeout("changeimage()", 3000);
} 
function changepage()
{ 
  if (index1 == 0) 
  { 
    newlocation = "/comspo/nap/palmes.asp" 
  }
  else if (index1 == 1) 
  { 
    newlocation = "http://www.ddweb.hu/buvarklub/english/?action=aruhaz" 
  }
  location = newlocation 
} 