window.onload = function() {
    if (typeof(interfaceLoad)=='function') { 
        interfaceLoad();
    }
}

function showVideo(el) {
  var w = 560;
  var h = 500;
  var x = Math.floor((screen.width - w - 50)/2);
  var y = Math.floor((screen.height - h - 60)/2);
  var win = window.open(el.href, 'IMAGE_WINDOW', 'dependent=yes, disrectories=no, width='+w+', height='+h+', innerWidth='+w+', innerHeight='+h+', location=no, menubar=no, resizable=no, screenX='+x+', screenY='+y+', scrollbars=yes, titlebar=no, toolbar=no');
  win.focus();
}

