function VideoQuickTime(src, width, height, control)
{
	document.write('<object id="video_source" codebase="http://www.apple.com/qtactivex/qtplugin.cab" width="' + width + '" height="' + height + '" classid="clsid:02BF25D5-8C17-4B23-BC80-D3488ABDDC6B">');
	document.write('<param name="src" value="' + src + '" />');
	document.write('<param name="controller" value="' + control + '" />');
	document.write('<param name="autoplay" value="true" />');
	document.write('<param name="scale" value="aspect" />');
	document.write('<param name="pluginspage" value="http://www.apple.com/quicktime/download/indext.html" />');
	document.write('<object data="' + src + '" width="' + width + '" height="' + height + '">');
	document.write('<param name="src" value="' + src + '" />');
	document.write('<param name="controller" value="' + control + '" />');
	document.write('<param name="autoplay" value="true" />');
	document.write('<param name="scale" value="aspect" />');
	document.write('<param name="pluginspage" value="http://www.apple.com/quicktime/download/indext.html" />');
	document.write('</object>');
	document.write('</object>');
}

function VideoRealMedia(src, width, height, control)
{
	document.write('<object id="myplayer" classid="clsid:cfcdaa03-8be4-11cf-b84b-0020afbbccfa" width="' + width + '" height="' + height + '"');
	document.write('<param name="console" value="clip1" />');
	document.write('<param name="autostart" value="true" />');
	document.write('<param name="nologo" value="true" />');
	document.write('<param name="nojava" value="true" />');
	document.write('<param name="autoplay" value="true" />');
	document.write('<param name="loop" value="false" />');
	document.write('<param name="controller" value="true" />');
	document.write('<param name="pluginspage" value="http://www.real.com/player/index.html?src=000629realhome" />');
	document.write('<param name="src" value="' + src + '" />');
	document.write('<embed width="' + width + '" height="' + height + '" type="audio/x-pn-realaudio-plugin" controller="' + control + '" autoplay="false" src="' + src + '" border="0" pluginspage="http://www.real.com/player/index.html?src=000629realhome"></embed>');
	document.write('</object>');
}

function VideoMediaPlayer(src, width, height, control)
{
	document.write('<object id="video" width="' + width + '" height="' + height + '" classid="clsid:6bf52a52-394a-11d3-b153-00c04f79faa6" type="application/x-oleobject">');
	document.write('<param name="url" value="' + src + '" />');
	document.write('<param name="autostart" value="true" />');
	document.write('<param name="uimode" value="' + control + '" />');
	document.write('<param name="playcount" value="9999" />');
	document.write('</object>');
}