// Stop playing video clip and hide the player
function clipStop() {
  videoBlock = document.getElementById("layoutSideVideo");
  videoBlock.innerHTML = "";
  videoBlock.style.visibility = "hidden";
}

// Start playing video clip
function clipStart(videoName, videoLength) {
  var params = {
    wmode: "transparent",
    quality: "high",
    swLiveConnect: "true",
    allowScriptAccess: "always",
    bgColor: "#FFFFFF"
  };

  swfobject.embedSWF("/templates/ehb/images/flash/" + videoName + ".swf", "layoutSideVideo", "640", "368", "9.0.0", "", false, params, false);

//  setTimeout("clipStop()", videoLength);
}
