<!-- 
//this keeps track of what image we are on (we always start on zero)
      //no need to change this variable
      var curImage = 0;

      
      //This function prints the images and text that are defined in the array
      function change(intNum) {
          //we do not want to go beyond the bounds of our array, so if we are 
          //below zero then lets set the current image to the last image
          if (intNum < 0) { 
            //the last image is the same num as the length
            intNum = document.infoArray.length-1; 
          }  //end making sure that we are not too low 
          if (intNum == 01) { 
            //the last image is the same num as the length
            intNum = 1; 
          }  
          //also we do not want to go to high, so if we are beyound the last image
          //then lets set the current image to the first image
          if (intNum>document.infoArray.length-1) {
            //we have gone too far, go back to 0
            intNum = 0; 
          } //end making sure that we are not too low
          
          
          //set the surrent image to the one we just specified
          curImage = intNum-1+1;
          
          //make sure that we can switch images
          if (document.images) {
              //set the path to the new image
              imgPath = document.imgFolder+document.infoArray[intNum][0];
              
              //change the main image, please
              document.images["main"].src = imgPath;
              //we need different size image because there are verticle and
              //horizontal images
              if (imgPath.indexOf("_h.") == -1) {
                 //now test for large and small images
                 if (imgPath.indexOf("_lg_") == -1) {
                    //this is the height and width for verticle small images
                    document.images["main"].width = "189";
                    document.images["main"].height = "295";
                    //document.images["spacer"].height = "1";
                 } else {
                    //this is the height and width for verticle large images
                    document.images["main"].width = "317";
                    document.images["main"].height = "477";
                    //document.images["spacer"].height = "9";
                 }//end testing for large and small
              } else {
                  //now test for large and small images
                 if (imgPath.indexOf("_lg_") == -1) {
                     //this is the height and width for horizontal images
                     document.images["main"].width = "276";
                     document.images["main"].height = "210";
                     //document.images["spacer"].height = "79";
                     //document.images["spacer"].height = "1";
                 } else {
                     //this is the height and width for horizontal large images
                     document.images["main"].width = "466";
                     document.images["main"].height = "325";
                     //document.images["spacer"].height = "162";
                     //document.images["spacer"].height = "12";
                 }//end testing for large and small
                  
              } //end checking for verticle or horizontal
              
          }//end making sure we can use JavaScript
          
          //it is time to change the text now
          //changing text only works in IE
          if (document.all) {
            //change the left text
            document.all['left'].innerText = '"'+document.infoArray[intNum][1]+'"';
            //change the right text
            document.all['right'].innerText = document.infoArray[intNum][2];
         } else {
            for (i = 0;i<=document.infoArray.length-1;i++) {
               if (i == intNum) { 
                  text = true;
               } else {
                  text = false;
               }
               //alert("switchDiv('"+i+"left',"+text+")");
               eval("switchDiv('"+i+"left',"+text+")");
               eval("switchDiv('"+i+"right',"+text+")");
            }
         }
         
          //return false so the page does not refresh
          return false;
      }  //end the image switching function
      
      
      //start the window opening function
      function openWindow() {
         window.open(document.popUpPath+"?"+curImage, "LargeImage", "width=535,height=628,left=10,top=10,scrollbars=no,resizable");
      } //end the window opening function   
      
      //KLR says that this prints the text in Netscape
      isNS4 = (document.layers) ? true : false;
      isIE4 = (document.all && !document.getElementById) ? true : false;
      isIE5 = (document.all && document.getElementById) ? true : false;
      isNS6 = (!document.all && document.getElementById) ? true : false;
      
      function switchDiv(strDivName,bolVisible){
      
         //identify the element based on browser type
         if (isNS4) {
           objElement = document.layers[strDivName];
         } else if (isIE4) {
           objElement = document.all[strDivName];
         } else if (isIE5 || isNS6) {
           objElement = document.getElementById(strDivName);
         }
         
          if(isNS4){
             
             if(!bolVisible) {
               objElement.visibility ="hidden"
             } else {
               objElement.visibility ="visible"
             }     
          }else{
            
             if(!bolVisible) {
               objElement.style.visibility = "hidden";
             } else {
               objElement.style.visibility = "visible";
             }
         }
      }
      
      
      
// -->