function writeButton(theFile)

{
	
	var Swf = "http://www.g-a-m-e-z.com/button/musicplayer.swf";
	var flashCode = "";
	var newlineChar = "\n";
	flashCode += '<object type="application/x-shockwave-flash" data="'+Swf+'?&song_url='+theFile+'" width="17" height="17">'+newlineChar;
	flashCode += '<param name="movie" value="'+Swf+'?&song_url='+theFile+'" />'+newlineChar;	
	<img src="noflash.gif" width="17" height="17" alt="" />
	flashCode += '</object>'+newlineChar;
	document.write(flashCode);
}
	
	
