function FlashMovie(src, filename, width, height, quality)
{
	document.write("<object classid='clsid:d27cdb6e-ae6d-11cf-96b8-444553540000' codebase='http://fpdownload.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=8,0,0,0' width='" +width+ "' height='" +height+ "' id='" +filename+ "' align='middle'>");
	document.write("<param name='movie' value='" +src+ "' />");
	document.write("<param name='quality' value='" +quality+ "' />");
	document.write("<embed src='" +src+ "' quality='" +quality+ "' width='" +width+ "' height='" +height+ "' name='" +filename+ "' swliveconnect=true type='application/x-shockwave-flash' pluginspage='http://www.macromedia.com/go/getflashplayer' />");
	document.write("</object>");
}

function Video(src, width, height)
{
	document.write("<object id='MediaPlayer' name='MediaPlayer' classid='CLSID:22D6F312-B0F6-11D0-94AB-0080C74C7E95' standby='Video wird geladen...' width='" +width+ "' height='" +height+ "'>");
	document.write("<param name='Filename' value='"+src+"' />");
	document.write("<param name='AnimationAtStart' value='true' />");
	document.write("<param name='AutoStart' value='true' />");
	document.write("<param name='TransparentAtStart' value='false' />");
	document.write("<param name='ShowControls' value='true' />");
	document.write("<param name='PlayCount' value='true' />");
	document.write("<param name='showstatusbar' value='true' />");
	document.write("<embed width='" +width+ "' height='" +height+ "' src='"+src+"' controller='true' autoplay='true' playeveryframe='true'></embed>");
	document.write("</object>");
}
