    function flash_movie(src, ids, width, height, wmode)
    {
        var wh = "";
        if (parseInt(width) && parseInt(height)) 
            wh = " width='"+width+"' height='"+height+"' ";
        document.write("<object classid='clsid:d27cdb6e-ae6d-11cf-96b8-444553540000' codebase='http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,0,0' "+wh+" id="+ids+">");
		document.write("<param name=wmode value="+wmode+">");
		document.write("<param name=movie value="+src+">");
		document.write("<param name=quality value=high>");
		document.write("<embed src="+src+" quality=high wmode="+wmode+" type='application/x-shockwave-flash' pluginspage='http://www.macromedia.com/shockwave/download/index.cgi?p1_prod_version=shockwaveflash' "+wh+"></embed>");
		document.write("</object>");
    }

    function obj_movie(src, ids, width, height, autostart)
    {
        var wh = "";
        if (parseInt(width) && parseInt(height)) 
            wh = " width='"+width+"' height='"+height+"' ";
        if (!autostart) autostart = false;
        //document.write("<embed src='"+src+"' "+wh+" autostart='"+autostart+"'></embed>");
		document.write("<OBJECT classid='clsid:22D6F312-B0F6-11D0-94AB-0080C74C7E95' "+wh+" id="+ids+">");
		document.write("<param name='Filename' value="+src+">");
		document.write("<param name='AutoSize' value='1'>");
		document.write("<param name='AutoStart' value='"+autostart+"'>");
		document.write("<param name='AutoRewind' value='0'>");
		document.write("<param name='Enabled' value='1'>");
		document.write("<param name='ClickToPlay' value='1'>");
		document.write("<param name='ShowStatusBar' value='1'>");
		document.write("<param name='ShowControls' value='1'>");
		document.write("</OBJECT>");
    }

    function doc_write(cont)
    {
        document.write(cont);
    }

