
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 buildPlayerC(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='100'> \n");
	document.write("<PARAM name='playCount' value='1'> \n");
	document.write("<PARAM name='uiMode' value='full'> \n");
	document.write("<PARAM name='windowlessVideo' value='true'> \n");
	document.write("<EMBED type='application/x-mplayer2'");
	document.write("pluginspage='http://microsoft.com/windows/mediaplayer/en/download/'");
	document.write("id='mediaPlayer' name='mediaPlayer' displaysize='4' autosize='-1'");
	document.write("bgcolor='darkblue' showcontrols='false' showtracker='-1' ");
	document.write("showdisplay='0' showstatusbar='-1' videoborder3d='-1' width='" + inWidth + "' height='" + inHeight + "'");
	document.write("src='"+streamURL+"' autostart='true' designtimesp='5311' loop='true'>");
	document.write("</EMBED>\n");
	document.write("</OBJECT>\n");
}


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='100'> \n");
	document.write("<PARAM name='playCount' value='1'> \n");
	document.write("<PARAM name='uiMode' value='none'> \n");
	document.write("<PARAM name='windowlessVideo' value='true'> \n");
	document.write("<EMBED type='application/x-mplayer2'");
	document.write("pluginspage='http://microsoft.com/windows/mediaplayer/en/download/'");
	document.write("id='mediaPlayer' name='mediaPlayer' displaysize='4' autosize='-1'");
	document.write("bgcolor='darkblue' showcontrols='false' showtracker='-1' ");
	document.write("showdisplay='0' showstatusbar='-1' videoborder3d='-1' width='" + inWidth + "' height='" + inHeight + "'");
	document.write("src='"+streamURL+"' autostart='true' designtimesp='5311' loop='true'>");
	document.write("</EMBED>\n");
	document.write("</OBJECT>\n");
}

function regPlayer()
{
	oPlayer = document.getElementById("MediaPlayer");
}
window.onload = regPlayer;