function showTopQuestions(question){ 
  document.getElementById(question+'Answer').style.display = "inline";                         
       
}

function displayTopics(){
    var selection = document.forms["browseForm"].elements["browseSelection"].selectedIndex;    
        
       if (selection=='1'){
     topicname="About superpages.com";
     subtopicname="About PPC";
     }
      if (selection=='2'){
     
     topicname="Account Information";
     subtopicname="Account Creation and Management";
     }
      if (selection=='3'){
     
     topicname="Performance Based Advertising";
     subtopicname="Getting Started with Pay Per Click";
     }
      if (selection=='4'){
     
     topicname="Web hosting";
     subtopicname="Web Site Hosting";
     }
      if (selection=='5'){
     
     topicname="Listing and Profiles";
     subtopicname="Get Started with FREE Business Listings";
     }
     
      if (selection=='6'){
      
     topicname="Monitoring Your Advertising Performance";
     subtopicname="Optimizing Your Ads";
     }
     document.forms["browseForm"].action= 'helpdetails.do?topic='+topicname+'&subtopic='+subtopicname+'';  
     document.forms["browseForm"].submit(); 
    }
