function yMenuActive(pageID){
   if(document.getElementById('focus'+pageID)){
      document.getElementById('focus'+pageID).className = 'focusActive';
      document.getElementById('focusSub').className = 'focusSubShow';
   }
}

function adjustWidth(targetID,targetWidth,topMargin){
   if(targetWidth){
      var divTarget = document.getElementById(targetID);
      divTarget.style.paddingRight = (divTarget.offsetWidth-targetWidth)+'px';
      divTarget.style.width = targetWidth+'px';
   }
   if(topMargin){
      document.getElementById('content').style.paddingTop = topMargin+'px';
   }
}

function libraryHide(elementID){
   document.getElementById('librarySource'+elementID).className = 'libraryArtSource hide';
}

function libraryShow(elementID){
   document.getElementById('librarySource'+elementID).className = 'libraryArtSource';
}

function topInit(){
   var so = new SWFObject("/files/flash/top.swf?pageID={CurrentID}", "topFlash", "587", "65", "7");
   so.write("top"); 
}

function hideTopFlash(){
   document.getElementById('focus').className = 'focusOut';
}

function showTopFlash(){
   document.getElementById('focus').className = 'focusOver';
}

function popLogoDemo(){
    window.open ("/files/flash/logodemo.swf", "logodemo","resizable=1,location=0,status=0,toolbar=0,scrollbars=0,width=600,height=300");
}