/**
  author: daniel bulli
  wgbh interactive
  **/

function focusME() 
{
    window.focus(); //always focus
}

window.onload = focusME;

