/**
 * Inserts flash movie
 * @param movie		path to flash movie
 * @param version	flash version needed (clip will not be displayed, if installed version is smaller!)
 * @param width		movie width
 * @param height	movie height
 * @param alt		alternative content (will be displayed if no flash is detected or version to old)
 * @param showDownloadLink	if true: if flash version is too old, a download link will be displayed
 */
function InsertFlashMovie( movie, version, width, height, alt, showDownloadLink ) {
		document.write("<OBJECT	classid='clsid:D27CDB6E-AE6D-11cf-96B8-444553540000' codebase='https://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=" + version + ",0,0,0'");
		document.write(" WIDTH=" + width + " HEIGHT=" + height + ">");
		document.write("<PARAM NAME=movie VALUE='" + movie + "'>");
		document.write("<PARAM NAME=quality VALUE=high>");
		document.write("<PARAM NAME=bgcolor VALUE=#FFFFFF>");
        document.write("<PARAM NAME=wmode VALUE=transparent>");
		document.write("<PARAM NAME=allowScriptAccess value='never'>");
		document.write("<EMBED allowscriptaccess='never' HREF='#' src='" + movie + "' wmode=transparent quality=high bgcolor=#FFFFFF  WIDTH='" + width + "' HEIGHT='" + height + "' NAME='" + movie + "'");
		document.write(" TYPE='application/x-shockwave-flash' PLUGINSPAGE='https://www.macromedia.com/go/getflashplayer'></EMBED>");
		document.write("</OBJECT>");
		return true;
}


