function deletePlayer(theWrapper, thePlaceholder, thePlayerId) { 
	    //alert("testing--delete player");
        swfobject.removeSWF(thePlayerId);
        var tmp=document.getElementById(theWrapper);
        if (tmp) { tmp.innerHTML = "<div id=" + thePlaceholder + "></div>"; }
}

function createPlayer(thePlaceholder, thePlayerId, theFile, w, h) {
	
        var flashvars = {
                file:theFile, 
                autostart:"false",
				showdownload:"true",
				bufferlength: "10",
				volume: "100"
        };
        var params = {
                allowfullscreen:"true", 
                allowscriptaccess:"always"
        };
        
		//alert("testing--create player");
        swfobject.embedSWF("http://www.hixny.org/assets/flash/player.swf", thePlaceholder, w, h, "9", false, flashvars, params);
}
function initPlayer(theFile,id,w,h) { 
        deletePlayer('wrapper', 'placeholder1', 'player1'); 
        createPlayer('placeholder1', 'player1', theFile, w, h);
}