			function openPlayer(program, title) {
				document.getElementById('flashPlayer').innerHTML = "";

				var so = new SWFObject("flash/playerMultipleList.swf", "mymovie", "350", "200", "7", "#FFFFFF");  
				so.addVariable("autoPlay","no");
				so.addVariable("playlistPath","content_media/week/tmp/"+program+"/playlist.xml?"+Math.random());
				so.write("flashPlayer");

				document.getElementById('modalDialogHeader').innerHTML = title;
				ModalDialog_Show('player', 390);
			}

			function closePlayer() {
				ModalDialog_Close();
				document.getElementById('flashPlayer').innerHTML = "";
			}
