
var oPlayer;

function buildPlayer(streamURL)
{
	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='320' height='240'> \n");
	document.write("<PARAM name='URL' value='"+streamURL+"'> \n");
	document.write("<PARAM name='stretchToFit' value='1'> \n");
	document.write("<PARAM name='Volume' value='50'> \n");
	document.write("<PARAM name='AutoStart' value='true'> \n");
	document.write("<PARAM name='playCount' value='1'> \n");
	document.write("<PARAM name='uiMode' value='none'> \n");
	document.write("</OBJECT>\n");
}

function regPlayer()
{
	oPlayer = document.getElementById("MediaPlayer");
}
window.onload = regPlayer;
