<!--function openBrWindow(theURL,winName,features) { //v2.0  window.open(theURL,winName,features);}function LoadVideo(VideoID, VideoTitle){	var so = new SWFObject("http://video.nbcuni.com/embed/player_3-x/embedded.swf", "player_videoplayer", "100%", "100%", "9", "#000000");	so.addParam("wmode", "transparent");	so.addParam("AllowScriptAccess", "always");	so.addParam("AllowFullScreen", "true");	so.addVariable("deepLinkID", eval(VideoID));	so.addVariable("overridevideoControls", "controls/controls_scifi.swf");	so.addVariable("passAlong_baseLocation", "http://video.nbcuni.com/embed/player_3-x/");	so.addVariable("playerID", "videoplayer");	so.addVariable("passAlong_configID", "19000");	so.write("video_holder");	document.getElementById('VideoTitle').innerHTML = VideoTitle;	document.getElementById('VideoTitle').style.display = "block";	document.getElementById('VideoContainer').style.display = "block";}function CloseVideo(){	document.getElementById("VideoContainer").innerHTML = "<div id='video_holder' style='height: 100%; width: 100%; background-color: #000000;'></div>";	document.getElementById('VideoContainer').style.display = "none";	document.getElementById('VideoTitle').style.display = "none";}function LoadQuiz(QuizID){	document.getElementById('QuizFrame').src = "quiz.php?quizid=" + QuizID + "&start=1";	document.getElementById('QuizDiv').style.display = "block";}// TARGET THE SWF IN THE DOMfunction theSWF(SectionName){	if (navigator.appName.indexOf("Microsoft") != -1)	{		return window[SectionName]	}	else	{		return document[SectionName] 	}}function CloseQuiz(){	document.getElementById('QuizDiv').style.display = "none";	theSWF("main_holder_swf").FlashCloseQuiz();}//-->// THE FOLLOWING FUNCTIONS ARE FOR TALKING TO THE SWF THROUGH JAVASCRIPT