// all scripts in this file have been modified from their original format
info_handle = new Object;
info_ID = 0;

function info(w,h,t,l, url) {
  var loc = 'width=' + w + ',height=' + h + ',top=' + t + ',left=' + l;
  info_handle = window.open(url,"info",",,,,toolbar,scrollbars,resizable," + loc);
  if(parseInt(navigator.appVersion) >= 4){info_handle.window.focus();}
}


 function bookmark(){
  if (document.all) {
    if (window.location.href.indexOf("http")) {
      alert("You cannot bookmark a page on your local computer.");
    } else {
      window.external.AddFavorite(document.location.href,document.title)
    }
  } else {
    alert("Please select CTRL-D to bookmark this page");
  }
}

function makeHomePage() {
	if (document.all){
	  document.body.style.behavior='url(#default#homepage)';
      document.body.setHomePage(document.location);
	}
}

