
var oPlayer;
var psCount = 0;
var bBuffer = false;
var bStreaming = false;
var bStreamStopped = false;
var bTransitioning = false;
var bMediaEnded = false;

function resetStreamVars()
{
	bBuffer = false;
	bStreaming = false;
	bStreamStopped = false;
	bTransitioning = false;
	bMediaEnded = false;
}

function buildPlayer(streamURL, inWidth, inHeight)
{
	document.write("<OBJECT ID='MediaPlayer' CLASSID='CLSID:6BF52A52-394A-11D3-B153-00C04F79FAA6'\n");
	document.write("standby='Loading Microsoft Windows Media Player components...' TYPE='application/x-oleobject' width='" + inWidth + "' height='" + inHeight + "'> \n");
	document.write("<PARAM name='URL' value='"+streamURL+"'> \n");
	document.write("<PARAM name='stretchToFit' value='1'> \n");
	document.write("<PARAM name='AutoStart' value='true'> \n");
	document.write("<PARAM name='Volume' value='75'> \n");
	document.write("<PARAM name='playCount' value='2'> \n");
	document.write("<PARAM name='uiMode' value='none'> \n");
	document.write("</OBJECT>\n");
}

function regPlayer()
{
	oPlayer = document.getElementById("MediaPlayer");
}
window.onload = regPlayer;