// Functie voor het aanroepen van een flash-animatie zonder initiële click.
    function showflash(fl_file,fl_bgcolor,fl_width,fl_height) {
      // document.write("<div style='position: relative;'>\n");
      document.write("<OBJECT classid='clsid:D27CDB6E-AE6D-11cf-96B8-444553540000' ");
        document.write("codebase='http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=7,0,19,0' ");
        document.write("WIDTH='"+fl_width+"' HEIGHT='"+fl_height+"' VSPACE='0' HSPACE='0' id='"+fl_file+"'>\n");
      document.write("<PARAM NAME='movie' VALUE='"+fl_file+".swf'>\n");
      document.write("<PARAM NAME='wmode' VALUE='transparent'>\n");
      document.write("<PARAM NAME='quality' VALUE=high>\n");
      document.write("<PARAM NAME='bgcolor' VALUE="+fl_bgcolor+">\n");
      document.write("<EMBED src='"+fl_file+".swf' quality=high bgcolor="+fl_bgcolor+" WIDTH='"+fl_width+"' HEIGHT='"+fl_height+"'  NAME='"+fl_file+"' ");
      document.write("TYPE='application/x-shockwave-flash' PLUGINSPAGE='http://www.macromedia.com/go/getflashplayer'></EMBED>\n");
      document.write("</OBJECT>\n");
    }

// Functie voor het aanroepen van Windows Media Player zonder initiële click.
    function showwinmp(pl_file,pl_width,pl_height,pl_auto) {
      document.write("<OBJECT id='"+pl_file+"' width="+pl_width+" height="+pl_height+" ");
	document.write("style='position:relative;' ");
	document.write("CLASSID='CLSID:6BF52A52-394A-11d3-B153-00C04F79FAA6' type='application/x-oleobject'>");
      document.write("<PARAM NAME='URL' VALUE='"+pl_file+"'>");
      document.write("<PARAM NAME='AutoStart' VALUE='"+pl_auto+"'>");
      document.write("<EMBED src='"+pl_file+"' WIDTH='"+pl_width+"' HEIGHT='"+pl_height+"' ");
      document.write("NAME='"+pl_file+"' AUTOSTART='"+pl_auto+"'</EMBED>\n");
      document.write("</OBJECT>");
    }

