//Click Through Functions
function hideFlash(){
  document.getElementById("layout").style.height = "250px";
}
function showFlash(){
  document.getElementById("layout").style.height = "500px";
}

//Flash Communication
function getFlashMovieObject(movieName){
  if( window.document[movieName] ){
    return window.document[movieName];
  }
  if( navigator.appName.indexOf("Microsoft Internet")==-1 ){
    if( document.embeds && document.embeds[movieName] ){
      return document.embeds[movieName]; 
    }
  }else{
    return document.getElementById(movieName);
  }
}
function getGallery(which){
  var flashMovie=getFlashMovieObject("layout");
  flashMovie.SetVariable("getGallery", which);
}
function doPauseScroller(toggle){
  pauseScroller = toggle;
}
