function play_audio(file)

{//для поля 31 (на случай прослушивания аудиофайла)

var w='<html>\
	<body style="margin: 0">\
    <object id="mediaPlayer" classid="clsid:6BF52A52-394A-11D3-B153-00C04F79FAA6" width="320" height="118">\
        <param name="url" value="'+file+'">\
        <param name="autostart" value="true">\
        <param name="previewmode" value="false">\
        <embed type="application/x-mplayer2"\
            pluginspage="http://www.microsoft.com/windows/windowsmedia/"\
            src="'+file+'"\
            width="320" height="118"\
            autostart="true"\
            previewmode="false"\
            showcontrols="true">\
        </embed>\
    </object>\
	</body>\
</html>'

win=open('','','width=320,height=118}')
win.document.write(w)
return false;
}
