The movie system calls Polygon Accelerated Player, and it won’t get stuck if you drag it arbitrarily. It’s absolutely a good thing! If you don’t believe it, try it! <script language=javascript>
<!--
///
function GetPlayerVersion()
{
var LoginObj,ret;
Obj = new ActiveXObject(VodHelper.NetPlayer);
ret = Obj.GetCurrentVersion();
delete Obj;
return return;
}
function Logon(strUsrName,strPassword)
{
var LoginObj,ret;
Obj = new ActiveXObject(VodHelper.NetPlayer);
ret = Obj.Logon(strUsrName,strPassword);
delete Obj;
return return;
}
function VodPlay2(strServer,strUrl,strName)
{
try{
var Player;
Player = new ActiveXObject(VodHelper.NetPlayer);
Player.Play(strServer,strUrl,strName);
delete Player;
}
catch(e)
{
alert (Please download and install the online media player first!);
document.location.href = ......Player download address...;
return false;
}
return true;
}
function VodPlayExID(strServer,strID,strName)
{
try{
var Player;
Player = new ActiveXObject(VodHelper.NetPlayer);
Player.PlayExID(strServer,strID,strName);
delete Player;
}
catch(e)
{
alert (Please download and install the online media player first!);
document.location.href = ......Player download address...;
return false;
}
return true;
}
function VodPlayExIDExt(strServer,strID,strName,strExt)
{
try{
var Player;
Player = new ActiveXObject(VodHelper.NetPlayer);
Player.PlayExIDExt(strServer,strID,strName,strExt);
delete Player;
}
catch(e)
{
alert (Please download and install the online media player first!);
document.location.href = ......Player download address...;
return false;
}
return true;
}
function VodPlayExIDExtSub(strServer, strID, strName, strExt, strSub)
{
try{
var Player;
Player = new ActiveXObject(VodHelper.NetPlayer);
Player.PlayExIDExtSub(strServer,strID,strName,strExt, strSub);
delete Player;
}
catch(e)
{
alert (Please download and install the online media player first!);
document.location.href = ......Player download address...;
return false;
}
return true;
}
function VodPlayExPathExt(strServer, strPath, strID, strName, strExt)
{
try{
var Player;
Player = new ActiveXObject(VodHelper.NetPlayer);
Player.PlayExPathExt(strServer,strPath,strID,strName, strExt);
delete Player;
}
catch(e)
{
alert (Please download and install the online media player first!);
document.location.href = ......Player download address...;
return false;
}
return true;
}
function VodPlayExPathExtSub(strServer,strPath,strID,strName,strExt, strSub)
{
try{
var Player;
Player = new ActiveXObject(VodHelper.NetPlayer);
Player.PlayExPathExtSub(strServer,strPath,strID,strName,strExt, strSub);
delete Player;
}
catch(e)
{
alert (Please download and install the online media player first!);
document.location.href = ......Player download address...;
return false;
}
return true;
}
function VodPlayExPlaylist(strUrl)
{
try{
var Player;
Player = new ActiveXObject(VodHelper.NetPlayer);
Player.PlayExPlaylist(strUrl);
delete Player;
}
catch(e)
{
alert (Please download and install the online media player first!);
document.location.href = ......Player download address...;
return false;
}
return true;
}
function DownloadLoad(strServer,strID,strExt,strName)
{
try{
var Player;
//alert(ok);
Player = new ActiveXObject(VodHelper.NetPlayer);
Player.Download(strServer,strID,strExt,strName);
delete Player;
}
catch(e)
{
alert (Please download and install the online media player first!);
document.location.href =...Player download address...;
return false;
}
return true;
}
function DownloadPath(strServer,strPath,strID,strExt,strName)
{
try{
var Player;
//alert(ok);
Player = new ActiveXObject(VodHelper.NetPlayer);
Player.DownloadPath(strServer,strPath,strID,strName,strExt);
delete Player;
}
catch(e)
{
alert (Please download and install the online media player first!);
document.location.href = ......Player download address...;
return false;
}
return true;
}
VodPlayExPlaylist('...Movie Address...');
function closew(){
self.focus();
self.close();
return false;
}
setTimeout(closew();, 10);
</script>