
//CREATE FLASHPAYER (SOUND)

function createPlayer(theFile) {

var so = new SWFObject("media/mediaplayer.swf","playerID","0","0","7");
so.addParam('allowscriptaccess','always');
so.addParam('allowfullscreen','true');
so.addVariable("file",theFile);
so.addVariable("shuffle","false");
//so.addVariable("enablejs","true");
so.addVariable("volume","50");
so.addVariable("javascriptid","playerID");
so.addVariable("width","0");
so.addVariable("height","0");
so.addVariable("displayheight","0");
so.write('placeholder');

}

//SHOW/HIDE FLASHPLAYER (SOUND)

function showhide(showFlag){
browser_version= parseInt(navigator.appVersion);
browser_type = navigator.appName;
if (browser_type == "Microsoft Internet Explorer" && (browser_version >= 4) && (navigator.userAgent.indexOf("Windows") != -1)) {
	if (showFlag) { 
    	document.getElementById("placeholder").style.display="inline";
	} else { 
    	document.getElementById("placeholder").style.display="none";
	}
}
}


