// JavaScript Document

function showAudioPlayer(objectArchorId, audioFile) {
	if (swfobject) {
	
		/*  playerID:"1"
			autostart:"yes"
			bg:"0xf8f8f8"
			leftbg:"0xeeeeee"
			lefticon:"0x666666"
			rightbg:"0xcccccc"
			rightbghover:"0x999999"
			righticon:"0x666666"
			righticonhover:"0xFFFFFF"
			text:"0x666666"
			slider:"0x666666"
			track:"0xFFFFFF"
			border:"0x666666"
			loader:"0x9FFFB8"
			soundFile:"http%3A//www.adra.org/folder/audio/audiofile.mp3"
		*/
	
		var flashvars = {
			playerID:"1",
			autostart:"yes",
			bg:"0xf8f8f8",
			leftbg:"0xeeeeee",
			lefticon:"0x666666",
			rightbg:"0xcccccc",
			rightbghover:"0x999999",
			righticon:"0x666666",
			righticonhover:"0xFFFFFF",
			text:"0x666666",
			slider:"0x666666",
			track:"0xFFFFFF",
			border:"0x666666",
			loader:"0x9FFFB8",
			soundFile:audioFile,
			width: "100%",
			height:"24"
		};
		var params = {
			playerID:"1",
			autostart:"yes",
			bg:"0xf8f8f8",
			leftbg:"0xeeeeee",
			lefticon:"0x666666",
			rightbg:"0xcccccc",
			rightbghover:"0x999999",
			righticon:"0x666666",
			righticonhover:"0xFFFFFF",
			text:"0x666666",
			slider:"0x666666",
			track:"0xFFFFFF",
			border:"0x666666",
			loader:"0x9FFFB8",
			soundFile:audioFile
		};
		var attributes = {
		id:'adra_audio',
		name:'adra_audio'
		};
	
		swfobject.embedSWF('http://www.adra.org/trinet/new09/player/musicplayer2.swf', objectArchorId ,"","","7", flashvars, params, attributes);

		return true;
	}
}