<!--
function clear(a) {
  window.defaultStatus=a;
  window.status="";
  return true;
}

function msg(text) {
  window.status=(text) ? "Click here "+text+"..." : "";
  return true;
}

function delay() {
  var id=setTimeout("load()", 5000);
  img=new Array(new Image(), new Image());
  img[0].src="logo.gif";
  img[1].src="everest.jpg";
}

function load() {
  location.href="home.html";
}
//-->
