
function init() {
  var stage = document.getElementById('stage');
  if(!stage)
    return;
  if(stage.focus) 
    stage.focus();
  if(stage.blur) 
    stage.blur();
}

window.onload = init;
