function wmpObject(_name, _url, _w, _h, _mode)
{
	_html='<div align="center">'+
	'<OBJECT id="'+_name+'" type=application/x-oleobject height="'+_h+'" width="'+_w+'" classid=CLSID:6BF52A52-394A-11d3-B153-00C04F79FAA6>'+
	'<PARAM NAME="URL" VALUE="'+_url+'">'+
	'<PARAM NAME="rate" VALUE="1">'+
	'<PARAM NAME="balance" VALUE="0">'+
	'<PARAM NAME="currentPosition" VALUE="0">'+
	'<PARAM NAME="defaultFrame" VALUE="">'+
	'<PARAM NAME="playCount" VALUE="0">'+
	'<PARAM NAME="loop" VALUE="0">'+
	'<PARAM NAME="autoStart" VALUE="-1">'+
	'<PARAM NAME="currentMarker" VALUE="0">'+
	'<PARAM NAME="invokeURLs" VALUE="0">'+
	'<PARAM NAME="baseURL" VALUE="">'+
	'<PARAM NAME="volume" VALUE="100">'+
	'<PARAM NAME="mute" VALUE="0">'+
	'<PARAM NAME="uiMode" VALUE="'+_mode+'">'+
	'<PARAM NAME="stretchToFit" VALUE="0">'+
	'<PARAM NAME="windowlessVideo" VALUE="0">'+
	'<PARAM NAME="enabled" VALUE="-1">'+
	'<PARAM NAME="enableContextMenu" VALUE="0">'+
	'<PARAM NAME="fullScreen" VALUE="0">'+
	'<PARAM NAME="SAMIStyle" VALUE="">'+
	'<PARAM NAME="SAMILang" VALUE="">'+
	'<PARAM NAME="SAMIFilename" VALUE="">'+
	'<PARAM NAME="captioningID" VALUE="">'+
	'<PARAM NAME="enableErrorDialogs" VALUE="0">'+
	'<PARAM NAME="_cx" VALUE="6747">'+
	'<PARAM NAME="_cy" VALUE="5239">'+
	'<EMBED type="application/x-mplayer2" '+
	'pluginspage="http://microsoft.com/windows/mediaplayer/en/download/"'+
	'id="'+_name+'" name="'+_name+'" displaysize="4" autosize="-1"'+
	'bgcolor="darkblue" showcontrols="true" showtracker="-1"'+
	'showdisplay="0" showstatusbar="-1" videoborder3d="-1" width="'+_w+'" height="'+_h+'"'+
	'src="'+_url+'" autostart="true" designtimesp="5311" loop="0">'+
	'</EMBED>'+
	'</OBJECT>'+
	'</div>';	
	document.write(_html);
}
function flashObject(_name, _url, _w, _h)
{	
	_html=
		'<div align="center">'+
		'<OBJECT classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=5,0,42,0" id="'+_name+'" width='+_w+' height='+_h+'>'+
		'<PARAM name=SRC value="'+_url+'">'+
		'<PARAM name=wmode value="transparent">'+
		'<PARAM name=menu value=false>'+
		'<EMBED type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer" src="'+_url+'" name="'+_name+'" width='+_w+' height='+_h+'></EMBED>'+
		'</OBJECT>'+
		'</div>';	
	document.write(_html);
}
