function loadWMP(asx, width, height)
{
	var flashTag="";
	flashTag+="<OBJECT ID='Wmp7Object' width='"+width+"' height='"+height+"' classid='CLSID:6BF52A52-394A-11d3-B153-00C04F79FAA6' codebase='http://activex.microsoft.com/activex/controls/mplayer/en/nsmp2inf.cab#Version=5,1,52,701'standby='Loading Microsoft Windows Media Player components...' type='application/x-oleobject'>";
	
	flashTag+="<param name = 'URL' value = '"+asx+"'>";
	
	flashTag+="<param name = 'AutoStart' value = '1'>";
	
	flashTag+="<param name = 'UIMode' value = 'full'>";
	
	flashTag+="<param name = 'stretchToFit' value = '1'>";
	
	flashTag+="<param name = 'enableContextMenu' value = '0'>";
	
	flashTag+="</Object>";
	document.write(flashTag);

}