function startPlayerDropTimer(file, width, height) {
	if (file == null || file == '') {
		file = '200704_general-demo.mp3';
	}
	if (width == null) {
		width = 240;
	}
	if (height == null) {
		height = 20;
	}
	var t=setTimeout('dropPlayerInNow("' + file + '", ' + width + ', ' + height + ')',3000);
}
function dropPlayerInNow(file, width, height) {
	if (file == null || file == '') {
		file = '200704_general-demo.mp3';
	}
	if (width == null) {
		width = 240;
	}
	if (height == null) {
		height = 20;
	}
	var so = new SWFObject("mp3player.swf", "mp3player", width, height, "9", "#FFFFFF");
	so.addVariable("file", file);
	so.addVariable("autostart", "true");
	so.addVariable("javascriptid", "mp3player");
	so.addVariable("enablejs", "true");
	so.useExpressInstall('expressinstall.swf');
	so.write("flashcontent");
}
function sendEvent(swf,typ,prm) { 
  thisMovie(swf).sendEvent(typ,prm); 
}
function thisMovie(swf) {
  if(navigator.appName.indexOf("Microsoft") != -1) {
    return window[swf];
  } else {
    return document[swf];
  }
}
