function swap(targetId){
  
  if (document.getElementById)
        {
        target = document.getElementById(targetId);
        
            if (target.style.display == "none"){
                target.style.display = "";
            } 
            
            else{
                target.style.display = "none";
            }
        }
}
//Function to display pictures in the workbench galleries
function swapPhoto(photoSRC) {
    document.images.imgPhoto.src = "../images/wb/" + photoSRC;
    scrollTo(0,0);
}
// "" in the regular galleries
function swapPhoto1(photoSRC) {
    document.images.imgPhoto.src = "../images/" + photoSRC;
    scrollTo(0,0);
}