var splash = 0;

// do checking here to see if this browser is compatible with the splash screen

splash = 1;

var cookiestring = "" +document.cookie;

if (cookiestring.indexOf("edxSplashShown") > -1) {
  splash = 0;
}

if (flashinstalled < 1 || flashversion < 6) {
  splash = 0;
}

if (splash) {
  document.cookie = 'edxSplashShown=1;';
  document.write(
  '<div id=splashDiv style="left:0px;top:0px;position:absolute;width:100%;height:100%;background-color:#002A6A;z-index:1000;text-align:center;">' 
  );
//  '<div style="height:27px;background-image:url(images/header_top_1.gif);background-repeat:repeat-x;"></div>'
  AC_FL_RunContent( 'codebase','http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=7,0,19,0','width','670','height','675','wmode','transparent','src','/flash/splash_flash','quality','high','pluginspage','http://www.macromedia.com/go/getflashplayer','splash_flash','/flash/splash_flash' );
  document.write('</div>');
}

function hideSplash() {
  document.getElementById("splashDiv").style.display="none";
  document.getElementById("homeFlash").innerHTML = homeFlashMovieHTML;
}

