<!--
function loadVideo(file, popW, popH) {
    var w = screen.width;
    var h = screen.height;
    var leftPos = (w-popW)/2;
    var topPos = (h-popH)/2;
    popW += 14;
    popH += 11;
    window.open(file, "video", "status=0, toolbar=0, location=0, menubar=0, directories=0, scrollbars=0, width=" + popW + ", height=" + popH + ",top=" + topPos + ", left=" + leftPos);
}
//-->

