function embedAudio(file)
{
	document.write('<embed name="fmaaudio" src="' + file + '" width="90%" autostart="true">');
	document.write('</embed>');
}

function embedMov(file, width, height)
{
	document.write('<object classid="clsid:02BF25D5-8C17-4B23-BC80-D3488ABDDC6B" width="' + width + '" height="' + height + '" codebase="http://www.apple.com/qtactivex/qtplugin.cab">');
	document.write('<param name="SRC" value="' + file + '" />');
	document.write('<param name="AUTOPLAY" value="true" />');
	document.write('<embed src="' + file + '" width="' + width + '" height="' + height + '" autoplay="true" pluginspage="http://www.apple.com/quicktime/download/">');
	document.write('</embed>');
	document.write('</object>');
}

function embedWmv(file, width, height)
{
	document.write('<object classid="CLSID:6BF52A52-394A-11d3-B153-00C04F79FAA6" width="' + width + '" height="' + height + '" type="application/x-oleobject">');
	document.write('<param name="URL" value="' + file + '" />');
	document.write('<param name="AUTOSTART" VALUE="true" />');
	document.write('<embed src="' + file + '" width="' + width + '" height="' + height + '" type="application/x-oleobject" autostart="true">');
	document.write('</embed>');
	document.write('</object>');
}