$(document).ready(function() {
        $('a').focus(function() {
                $(this).blur();
            });
        $('a').click(function(e) {
                if (!e) var e = window.event;
                e.cancelBubble = true;
                if (e.stopPropagation) e.stopPropagation();
            });
    });

function open_page(url, width, height) {
  NewWindow = window.open(url, 'video', 'width='+width+',height='+height); 
  NewWindow.focus(); 
  return false;
}

