// JavaScript Document

function loadAudio(file, pos, wdth, hght, pos) {
	var so = new SWFObject(file, "flash_player", wdth, hght, "7", "#000000");
	so.addParam("wmode", "transparent"); // this line is optional, but this example uses the variable and displays this text inside the flash movie
	so.addParam("swLiveConnect", "true"); // for communication with Javascript in Netscape
	so.addVariable("song_position", pos); // sets the song position in the playlist to the number indicated
	so.write("flashcontent_player");
}
