function playMOV(srcname, autoplay, controller, loop, width, height) {
	document.write('<OBJECT CLASSID="clsid:02BF25D5-8C17-4B23-BC80-D3488ABDDC6B" WIDTH="' + width + '"HEIGHT="' + height + '"');
	document.write('CODEBASE="http://www.apple.com/qtactivex/qtplugin.cab">');
	document.write('<PARAM name="SRC" VALUE="' + srcname + '">');
	document.write('<PARAM name="AUTOPLAY" VALUE="' + autoplay + '">');
	document.write('<PARAM name="CONTROLLER" VALUE="' + controller + '">');
	document.write('<PARAM name="LOOP" VALUE="' + loop + '">');
	document.write('<EMBED SRC="' + srcname + '" WIDTH="' + width + '" HEIGHT="' + height + '" AUTOPLAY="' + autoplay + '" CONTROLLER="' + controller + '" LOOP="' + loop + '" PLUGINSPAGE="http://www.apple.com/quicktime/download/">');
	document.write('</EMBED>');
	document.write('</OBJECT>');
}

function playFLV(srcname) {
	document.write('<object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" codebase="http://fpdownload.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=7,0,0,0" width="320" height="240" id="320x240" align="middle">');
	document.write('<PARAM NAME=allowFlashAutoInstall VALUE=true>');
	document.write('<param name=Flashvars value="url=' + srcname + '">');
	document.write('<param name="allowScriptAccess" value="sameDomain" />');
	document.write('<param name="movie" value="fabriktour/320x240.swf" />');
	document.write('<param name="quality" value="high" />');
	document.write('<param name="bgcolor" value="#ffffff" />');
	document.write('<embed src="fabriktour/320x240.swf" swLiveConnect="true" Flashvars="url=' + srcname + '" quality="high" bgcolor="#ffffff" width="320" height="240" name="320x240" align="middle" allowScriptAccess="sameDomain" type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer" />');
	document.write('</object>');
}
