function getProdObject(id) {
   return document.getElementById(id);
}

function toggleProductTab(divPrdID) 
{
   //  alert(divPrdID.valueOf());
   hideAllProductTab();
   var d = getProdObject(divPrdID);
   d.className = 'tabshow';
}
                      
function hideAllProductTab() 
{
   var d = getProdObject('Features');
   d.className = 'tabhid';
                                  
   d = getProdObject('Specifications');
   d.className = 'tabhid';
                                               
   d = getProdObject('Applications');
   d.className = 'tabhid';
                                                           
   d = getProdObject('Accessories');
   d.className = 'tabhid';
                                                                       
   d = getProdObject('Downloads');
   d.className = 'tabhid';
}