  HomeImages = new Array("/images/graphics/santarosadelima-flags.gif", "/images/graphics/santarosadelima-beach1.gif", "/images/graphics/santarosadelima-beach.gif");
thisImg=0;
  function rotate(){
     document.HomeBanner.src = HomeImages[thisImg];
     setTimeout("rotate()", 10*500);
     thisImg = thisImg+1;
     if(thisImg == 3){ thisImg=0; }
  }
  
function openPage(picPage) {
    win = window.open(picPage,"picpage","width=810,height=600,screenX=10,screenY=10,left=10,top=5,scrollbars=1,resizable=1");
	win.window.focus();
}
