function mp3_object_embed( mp3file )
{	var code='<object type="audio" data="'+( mp3file )+'" width="100%" height="50">'
	+'<param name="src" value="'+( mp3file )+'">'
	+'<param name="autostart" value="true">'
	+'<param name="controls" value="ControlPanel">'
	+'<embed type="audio" src="'+( mp3file )+'" '
	+'autoplay="true" controller="true" controls="ControlPanel" '
	+'width="100%" height="50" align="top" border="0" vspace="0" hspace="0"><\/embed>'
	+'<noembed>Your browser does not support embedded MP3 files.<br>'
	+'You can download the file <a href="'+( mp3file )+'">___here___<\/a>'
	+'</noembed>'
	+'<\/object>';
	return code;
}