 
 
 
      function projectImage(projectImageNo, projectImageFileName) {
        
        var filePath = "images/projects/" + projectImageFileName;      
        
        document.getElementById('project_picture').src=filePath;
        
        var x;
        x = document.getElementById('pi1');
        if (x != null) document.getElementById('pi1').style.color='#c65a31';
        x = document.getElementById('pi2');
        if (x != null) document.getElementById('pi2').style.color='#c65a31';
        x = document.getElementById('pi3');
        if (x != null) document.getElementById('pi3').style.color='#c65a31';
        x = document.getElementById('pi4');
        if (x != null) document.getElementById('pi4').style.color='#c65a31';
        
        if (projectImageNo == "01") {
           document.getElementById('pi1').style.color='white';
        } else if (projectImageNo == "02") {
           document.getElementById('pi2').style.color='white';
        } else if (projectImageNo == "03") {
            document.getElementById('pi3').style.color='white';
        } else if (projectImageNo == "04") {
            document.getElementById('pi4').style.color='white';
        }
        return;
      }
      
      function pointerCursorOn()
      {
        document.body.style.cursor="pointer";
      }    
      
      function pointerCursorOff()
      {
        document.body.style.cursor="default";
      } 
      
         
      function openCatalog(name) {
        if (name == "ornaments") {
          document.location = "/catalog/Ornaments.html";
        } else if (name == "moldings") {
          document.location.href = "/catalog/Moldings.html";
        } else if (name == "brackets") {
          document.location.href = "/catalog/Brackets.html";
        } else if (name == "cresting") {
          document.location.href = "/catalog/Cresting.html";
        } else if (name == "rosettes") {
          document.location.href = "/catalog/Rosettes.html";
        } else if (name == "dentils") {
          document.location.href = "/catalog/Dentils-Tiles.html";
        } else if (name == "catalog") {
          window.open("/catalog/Cover.html","catalog","location=0,status=0,scrollbars=1");
        }
        document.location.href = "index.html";
        return;
      }
      
