function writeVideo(url, autostart, title, clipHeight, clipWidth) {
	var rnd_no = Math.round((10000000)*Math.random());
	var re = /\?.*=/;
	if (url.match(re)) {
		url += "&rnd=" + rnd_no;
	} else {
		url += "?rnd=" + rnd_no;
	}
	clipHeight += 69;
	document.write ('<object id="MediaPlayer" width='+clipWidth+' height=' + clipHeight);
	document.write ('  classid="CLSID:22D6F312-B0F6-11D0-94AB-0080C74C7E95"');
	document.write ('  codebase="http://activex.microsoft.com/activex/controls/mplayer/en/nsmp2inf.cab#Version=6,0,02,902"');
	document.write (' standby="Loading Microsoft Windows Media Player components..."');
        document.write (' type="application/x-oleobject" border="1" alt="'+title+'">');
	document.write ('<param name="filename" VALUE="' + url + '">');
	document.write ('<param name="AnimationatStart" VALUE="0"/>');
	document.write ('<param name="TransparentatStart" VALUE="1"/>');
	document.write ('<param name="AutoStart" VALUE="'+autostart+'"/>');
	document.write ('<param name="ShowControls" VALUE="1"/>');
	document.write ('<param name="SendPlayStateChangeEvents" VALUE="1"/>');
	document.write ('<param name="EnableContextMenu" VALUE="1"/>');
	document.write ('<param name="EnablePositionControls" VALUE="0"/>');
	document.write ('<param name="ShowStatusBar" VALUE="0"/>');
	document.write ('<param name="AllowScan" VALUE="0"/>');
	document.write ('<param name="volume" VALUE="0"/>');
	document.write ('<param name="displaySize" VALUE="0"/>');
	document.write ('<embed type="application/x-mplayer2" pluginspage="http://www.microsoft.com/Windows/MediaPlayer/" src="' + url + '" name="MediaPlayer" WIDTH="'+clipWidth+'" height="' + clipHeight + '" autostart="'+autostart+'"  EnableContextMenu="0"  ShowControls="1" AnimationAtStart="0" ShowStatusBar="0" volume="0" displaySize="0">');
	document.write ('</embed>');
	document.write ('</object>');
}
