﻿// JScript 文件
var PageWidth =  screen.availWidth - 10;
var PageHeight = screen.availHeight - 36;

function OpenVideo(url){
    if(navigator.userAgent.toLowerCase().indexOf('opera') != -1 && window.event.preventDefault) 
    window.event.preventDefault();
    this.newWindow = window.open(url, 'player', 'toolbar=0,scrollbars=0,location=0,status=0,menubar=0,width='+PageWidth+',height='+PageHeight+', resizable=0,left=0,top=0,screenX=0,screenY=0 ');
    this.newWindow.focus();
    this.newWindow.opener=window;
    return false;
}