function PlayerOpen(soundfilepath) {
	if(document.getElementById('sound_id')==null){
		document.body.innerHTML += '<div id="sound_id" style="float:right;height:10px;position:absolute;text-align:right;top:0px;width:100%;"></div>';
	}
	document.getElementById('sound_id').innerHTML='';
	var s3 = new SWFObject("/images/speech/swf/mp3player.swf", "line", "140", "20", "7");
	s3.addVariable("file",soundfilepath);
	s3.addVariable("autostart","true");
	s3.addVariable("width","140");
	s3.addVariable("height","20");
	
	s3.write('sound_id');
	
}

