home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Chip 2002 September (Special)
/
Chip-Special_2002-09_Digitalni-Video.bin
/
servis
/
wm9
/
mpsetupXP.exe
/
RCDATA
/
CABINET
/
wmploc.DLL
/
256
/
HTMLVIEW.JS
< prev
next >
Wrap
Text File
|
2002-08-19
|
606b
|
28 lines
// Windows Media Player - Copyright 2000 Microsoft Corporation.
//<script>
var g_lastURL = "";
function Update_HTMLView()
{
var HTMLView_Tag = getHTMLViewURL();
if ( (HTMLView_Tag == "") || (HTMLView_Tag==g_lastURL) ) return;
g_lastURL = HTMLView_Tag;
HTMLView_Browser.URL = HTMLView_Tag;
}
function getHTMLViewURL()
{
var tag="";
if (player.openState==osMediaOpen)
{
tag = player.currentMedia.getItemInfo("HTMLView");
}
if (tag == "")
{
tag = player.currentPlaylist.getItemInfo("HTMLView");
}
return tag;
}