/* Media Player Initialization script *//* Requires SWFObject.js*/ondocumentready = function() {	// calls flashVersionIs(9,0,115,0); forcing an upgrade if version is less than 6	swfobject.embedSWF('/mediaplayer/flashversionis.swf', 'detect', '1', '1', '6.0.0', '/mediaplayer/expressInstall.swf'); };function flashVersionIs(majorVers,minorVers,majorRev,minorRev) { // The actual version as returned from flashversionis.swf (to avoid JS detection bugs); 9.0.98 is the minimum for h264 playback	var requireVersion='';	if(majorVers>9||(majorVers==9&&majorRev>=98)) requireVersion='0'; // they have 9.0.98+ anyway, so don't bother with the check	else requireVersion='9.0.98'; // if not, proceed as usual, forcing them to upgrade	// show Flash movie	swfobject.embedSWF('/mediaplayer/mediaplayer.swf', 'flash', '640', '380', requireVersion, '/mediaplayer/expressInstall.swf',		{file:'/mediaroom/Emerging_Experts/BGS-STARS-2009-HD.mov.flv',image:'/mediaroom/Emerging_Experts/poster.jpg',width:'640',height:'380'}, {},		{id:'mediaplayer'}	);}new function() { // Cross-browser "documentready" Event -- Dean Edwards, et al  var b, i, f = function() {if (!b) {    (ondocumentready||new Function)({type:"documentready"});    // wire up to fire all documentready event handlers ...  }b = true;};  /*@cc_on @if (@_win32)  document.write("<scr"+"ipt id=__ie_onload defer src=javascript:void(0)></scr"+"ipt>");  document.getElementById("__ie_onload").onreadystatechange = function() {    if (this.readyState == "complete") f();  }; window.attachEvent("onload", f); @elif */  if (document.addEventListener) {    document.addEventListener("DOMContentLoaded", f, false);    window.addEventListener("load", f, false);  }  if (/WebKit/i.test(navigator.userAgent)) {    i = setInterval(function() {      if (/loaded|complete/.test(document.readyState)) {        clearInterval(i);        f();      }    }, 10);  }  /*@end @*/};