<!--
var MovieName;	// FlashName & BildName ohne Extension
var Breite;		// Breite in PX
var Hoehe;		// Höhe in PX

function InsertMovie(MovieName,Breite,Hoehe)
{
window.document.write('<object type="application/x-shockwave-flash" data="' + MovieName + '" width="' + Breite + '" height="' + Hoehe + '">\n');
window.document.write('<param name="movie"		value="' + MovieName + '" />\n');
window.document.write('<param name="play"		value="true" />\n');
window.document.write('<param name="menu"		value="false" />\n');
window.document.write('<param name="quality"	value="high" />\n');
window.document.write('<param name="bgcolor"	value="e0ded1" />\n');
window.document.write('</object>\n');
}
// -->
