// JavaScript Document
function  showVideo(playList){
player=document.getElementById("PreviewPlayer");
//alert(playList)
if(playList=="none"){
  document.getElementById("video").style.visibility = "hidden";
  player.sendEvent("STOP","true"); 
  }
else if (playList=="VolW1"){
  document.getElementById("video").style.visibility = "visible";
  player.sendEvent("LOAD","../airspeed/promo/VolW1-Promo.flv");
  player.sendEvent("PLAY","true"); 
    }  
else if (playList=="Vol3"){
  document.getElementById("video").style.visibility = "visible";
  player.sendEvent("LOAD","../airspeed/promo/Vol3-Promo.flv");
  player.sendEvent("PLAY","true"); 
    }  
else if (playList=="Vol2"){
  player.sendEvent("LOAD","Vol2Playlist.php");
  document.getElementById("video").style.visibility = "visible";
  setTimeout('player.sendEvent("PLAY","true")',500);
    }  
else if (playList=="Vol1"){
  player.sendEvent("LOAD","Vol1Playlist.php");
  document.getElementById("video").style.visibility = "visible";
  setTimeout('player.sendEvent("PLAY","true")',500);
    }  
else {
  document.getElementById("video").style.visibility = "visible";
  player.sendEvent("PLAY","true"); 
  }
}

function  showMore(whattoshow){
//alert(whattoshow)
  document.getElementById(whattoshow).style.display = "inline";
  document.getElementById(whattoshow+"Clicker").style.display = "none";
}

function  showLess(whattoshow){
//alert(whattoshow)
  document.getElementById(whattoshow).style.display = "none";
  document.getElementById(whattoshow+"Clicker").style.display = "inline";
}

