
/* lad23ph
 * http://www.e-AsiaOnlineTravel.com/
 * (c)E-Biz Online Travel & Tours  2006
 * All rights reserved.
 * --------------------------------------------------
 * support open source.
 * --------------------------------------------------
 */

var urlArray = new Array(5); //for URL's, increase size as necessary
var banArray = new Array(5); //for banners, increase size as necessary
var counter = 1;
var url = "http://www.yourhostingportal.com"; //initial URL

//add your necessary URL's
urlArray[0] = "http://www.yourhostingportal.com";
urlArray[1] = "/philippines/airticketing.html";
urlArray[2] = "/philippines/boracay/index.html";
urlArray[3] = "/philippines/boracay/index.html";
urlArray[4] = "http://www.yourhostingportal.com";

if(document.images) //pre-load all banner images
{
  for(i = 0; i < 5; i++)
  {
    banArray[i] = new Image(468, 60);
    banArray[i].src = "/philippines/images/ads/photo" + (i+1) + ".jpg";
  }
}
function LinkPagina() {
top.window.location.href = url;
}

function changeBanner() //banner changer function
{
  if(counter > 4)
   counter = 0;

  document.banner.src = banArray[counter].src; //sets a new banner

  url = urlArray[counter]; //sets a new URL to the banner
  counter++; //increase the counter for the next banner
}

//calls the changeBanner() function every 3 seconds
//change the timer as necessary (minutes * 60000) or (seconds * 1000)
var timer = window.setInterval("changeBanner()", 8000);
