	function showVideo(id){
		var showObject = document.getElementById(id);
		showObject.style.display = "block";
	}
		function hideVideo(id){
		var hiddenObject = document.getElementById(id);
		hiddenObject.style.display = "none";
	}

function MM_openBrWindow(theURL,winName,features) { //v2.0
  window.open(theURL,winName,features);
}