window.onload = function() {
	var dimBox = document.getElementById("dimBox");
	dimBox.style.display = "none";
	
	dimBox.onclick = function() {
		hideVideoPlayer();
		return false;
	}
		
}

function showVideoPlayer(xml) {
	//alert("showVideoPlayer");	
	var dimBox = document.getElementById("dimBox");
	dimBox.style.display = "";
	
	var params = {
		quality: "high",
		scale: "noscale",
		salign: "TL",
		align: "middle",
		allowscriptaccess: "always",
		wmode: "transparent"
	};
	var flashvars = {xmlFile:xml};
	var attributes = {};
	
	swfobject.embedSWF("/swf/preloader.swf", "media_player", "100%", "100%", "9.0.124", "/swf/expressInstall.swf", flashvars, params, attributes);
}

function hideVideoPlayer() {
	//alert("hideVideoPlayer");
	var dimBox = document.getElementById("dimBox");
	dimBox.style.display = "none";
	
	var el = document.getElementById("media_player");
	if(el){
		var div = document.createElement("div");
		el.parentNode.insertBefore(div, el);

		//Remove the SWF
		swfobject.removeSWF("media_player");

		//Give the new DIV the old element's ID
		div.setAttribute("id", "media_player");
	}
}