﻿// JScript File

function hOpenVideo(theURL,theWidth,theHeight) { 
    var basestring="window"+new Date().getTime();
    theTop=(screen.height/2)-(theHeight/2);
    theLeft=(screen.width/2)-(theWidth/2); 
    basestring=window.open(theURL,basestring,'scrollbars=yes,resizable=no,status=no,width='+theWidth+',height='+theHeight+',top='+theTop+',left='+theLeft+'');
    basestring.focus(); 
}