var jsReady = false;
// ------- functions called by ActionScript -------
// called to check if the page has initialized and JavaScript is available
function isReady() {
  document.getElementById('flashcontent').style.border="none";
  document.getElementById('flashcontent').style.padding="0px";
  document.getElementById('flashcontent').style.backgroundColor="transparent";
  return jsReady;
  }
// called by the onload event of the <body> tag
function pageInit() {
    // Record that JavaScript is ready to go.
    jsReady = true;
}
// extra functions to be called
function launchSWF(o) {
  alert(o);
}
function HideVideoPlayer() {
  document.getElementById('flashcontent').style.top="2100px";
  document.getElementById('flashcontent').style.display = "none";
}