
// 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) {
    window.external.AddFavorite(document.location.href,document.title)
  }
}

function makeHomePage() {
	if (document.all){
	  document.body.style.behavior='url(#default#homepage)';
      document.body.setHomePage(document.location);
	}
}

