function showDetailContent(Content)
{
  var colors = document.getElementById('ColorOptions');
  var specs = document.getElementById('TechSpecs');
  
  if (Content.toLowerCase() == 'coloroptions')
  {
    specs.style.display = 'none';
    colors.style.display = 'block';
    changeElementClass('ShowColors','Selected');
    changeElementClass('ShowSpecs','Deselected');
  }
  else
  {
    colors.style.display = 'none';
    specs.style.display = 'block';
    changeElementClass('ShowColors','Deselected');
    changeElementClass('ShowSpecs','Selected');
  }
}