function gE(el){
  return document.getElementById(el)
}

function gTn(el){
  return document.getElementsByTagName(el)
}

function cE(el){
  return document.createElement(el)
}

var pf = "http://www.phileasfox.com";
var lh = location.href;
var dt = document.title;
var tO;

function adScr() {
  var nScr=cE("script");
  nScr.src=pf+'/cgi-bin/bmjs.pl';
  gTn('head')[0].appendChild(nScr)
}

function getPos(e) {
  var e = e || window.event;
  cosBmDiv(e.clientY);
}

function bmDiv(){
  // ul          li         a
  gE('bmns').firstChild.firstChild.onmouseover = function(e) { getPos(e); clearTimeout(tO) };
  gE('bmns').firstChild.firstChild.onmouseout = function() { tO = setTimeout('hBmDiv()',900) };
  gE('bmns').firstChild.firstChild.onclick = function() { return false };
}


var owo = window.onload;
window.onload = function() {
  if (owo) { owo() };
  adScr()
  bmDiv()
}

