function GerarAudio($arquivo,$altura,$largura,$id){
    document.writeln('    <object id="video" width="80" height="30" border="0" classid="CLSID:05589FA1-C356-11CE-BF01-00AA0055595A">');
    document.writeln('        <param name="ShowDisplay" value="0">');
    document.writeln('                <param name="ShowControls" value="1">');
    document.writeln('                <param name="AutoStart" value="0">');
    document.writeln('                <param name="AutoRewind" value="0">');
    document.writeln('                <param name="PlayCount" value="0">');
    document.writeln('                <param name="Appearance value="0">');
    document.writeln('                <param name="BorderStyle value="0">');
    document.writeln('                <param name="MovieWindowHeight" value="1">');
    document.writeln('                <param name="MovieWindowWidth" value="1">');
    document.writeln('                <param name="FileName" value="' + $arquivo + '">');
    document.writeln('                <embed src="' + $arquivo + '" type="video/x-msvideo" width="1" height="1" loop="true" autostart="true" controls="false"> ');
    document.writeln('                </embed> </object>');
}