
<!--
var inactSrc='http://www.linguafidelis.com/nesseguitars/graphics/tab_mini_inactive.jpg';
var actSrc='http://www.linguafidelis.com/nesseguitars/graphics/tab_mini_active.jpg';

function tabUp(frame,thisTab,numTabs,targ) {
for (var i=0;i<(numTabs+1);i++) 
{
if (i==thisTab) { continue; }
/*document.getElementById('Tab'+i).style.visibility='hidden';
document.getElementById('Tab'+thisTab).style.visibility='visible';*/
document.getElementById('tab'+i).src=inactSrc;
document.getElementById('tab'+thisTab).src=actSrc;
window.frames[frame].location=targ;

}
featSubFrame.src='tab'+thisTab+'.htm';
}

var currentPanel;
var	mouseOverBG = '#9999ff';
var activeBG = '#CC9900';
var activeTextColor = 'white';
var inactiveTabBG = '#FFFFFF';
var inactiveTextColor = 'black';
   
   function showPanel(panelNum) {
      //hide visible panel, show selected panel, 
      //set tab
      if (currentPanel != null) {
         hidePanel();
      }
      document.getElementById 
         ('panel'+panelNum).style.visibility = 'visible';
         currentPanel = panelNum;
         setState(panelNum);
   }
   
   function hidePanel() {
      //hide visible panel, unhilite tab
      document.getElementById
        ('panel'+currentPanel).style.visibility = 
         'hidden';
      document.getElementById
        ('tab'+currentPanel).style.backgroundColor = 
        inactiveTabBG;
      document.getElementById
        ('tab'+currentPanel).style.color = inactiveTextColor;
   }
   
   function setState(tabNum) {
      if (tabNum==currentPanel) {
         document.getElementById 
           ('tab'+tabNum).style.backgroundColor = 
           activeBG;
         document.getElementById
           ('tab'+tabNum).style.color = activeTextColor;
      }
      else {
         document.getElementById
           ('tab'+tabNum).style.backgroundColor = 
           inactiveTabBG;
         document.getElementById
           ('tab'+tabNum).style.color = inactiveTextColor;
      }
   }
   
   function hover(tab) {
      tab.style.backgroundColor = mouseOverBG;
   }

//-->


