function write_wmp(num,width,height,prefix,suffix) {
	// "prefix + num + suffix + '.asx'"
	if(!width) width = 320;
	if(!height) height = 240;
	height += 70;
	var str='<object id="NSPlay" width="'+width+'" height="'+height+'" classid="CLSID:22D6F312-B0F6-11D0-94AB-0080C74C7E95" 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"><param name="FileName" value="'+prefix+num+suffix+'.asx"><param name="ShowControls" value="1"><param name="ShowStatusBar" value="1"><param name="ShowDisplay" value="0"><param name="DefaultFrame" value="main"><param name="ShowPositionControls" value="0"><param name="Autostart" value="1"><embed id="NSPlay" type="application/x-mplayer2" pluginspage="http://www.microsoft.com/Windows/MediaPlayer/download/default.asp" src="'+prefix+num+suffix+'.asx" ShowPositionControl=0 showcontrols=1 showdisplay=0 showstatusbar=1 defaultframe="main" width='+width+' height='+height+'></embed></object>';
	document.write(str);
}

