var numOfButtons = 0;
var importUserAgent = navigator.appName.indexOf("Microsoft");

function importStop(idnya) {
	for(i=0; i<numOfButtons; i++){
		if(i!=idnya) {
			if (importUserAgent != -1) {
				window["movie"+i].js_stop();
			} else {
				if (document["movie"+i])
					document["movie"+i].js_stop();
				else document.getElementById("movie2").js_stop();
			}
		}
	}
}
function importInsert(File) {
	theid = numOfButtons;
	thecode='<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=8,0,0,0" width="17" height="17" id="movie'+theid+'" align="texttop" >\n';
	thecode+='<param name="movie" value="http://importmusik.com/musicplayer2.swf?&song_url='+File+'&myid='+theid+'&" />\n<param name="wmode" value="transparant" />\n';
	thecode+='<embed src="http://importmusik.com/musicplayer2.swf?&song_url='+File+'&myid='+theid+'&" width="17" height="17" name="movie'+theid+'" loop="false" menu="false" wmode="transparent" quality="high" allowScriptAccess="sameDomain" type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer"  align="texttop" />\n';
	thecode+='</object>\n';
	numOfButtons++;
	document.write(thecode);
}