function insertMovie(url, flashvars, autoPlay, type)
{
   if(!type)
       type="audio/mpeg";
	
	/*document.write('<OBJECT CLASSID="clsid:6BF52A52-394A-11D3-B153-00C04F79FAA6" CODEBASE="http://www.microsoft.com/windows/mediaplayer/" HEIGHT=45 WIDTH=300>\r\n');
	document.write('<PARAM NAME="type" VALUE="' + type + '">\r\n');
	document.write('<PARAM NAME="src" VALUE="' + url + '">\r\n'); 
	document.write('<PARAM NAME="autoplay" VALUE="' + autoPlay + '">\r\n'); 
	document.write('<PARAM NAME="controller" VALUE="true">\r\n');
	document.write('<PARAM NAME="bgcolor" VALUE="#005DA1">\r\n');
	document.write('</OBJECT>');
*/
	document.write('<embed type="' + type + '" src="' + url + '" width="400" height="35" quality="best" autoPlay="' + autoPlay + '" bgcolor="#ffffff" wmode="window" flashvars="' + flashvars + '" />');
}