function fnMP3Object(sObjectFile, iWidth, iHeight) {
	document.writeln('<object width="' +  iWidth + '" height="' + iHeight + '">');
	document.writeln('	<param name="src" value="' + sObjectFile + '" />');
	document.writeln('	<param name="loop" value="3" />');
	document.writeln('	<param name="volume" value="100" />');
	document.writeln('	<param name="autoplay" value="true" />');
	document.writeln('	<param name="controller" value="true" />');
	document.writeln('	<embed src="' + sObjectFile + '" width="' +  iWidth + '" height="' + iHeight + '" autostart="true" loop="3" volume="100" controller="true"></embed>');
	document.writeln('</object>');
}