home *** CD-ROM | disk | FTP | other *** search
/ Chip 2005 March / CMCD0305.ISO / Software / Shareware / Grafica / 3dpie / Examples / javascript.txt < prev    next >
Text File  |  2004-07-08  |  597b  |  19 lines

  1. <!-- This piece of JavaScript should be placed in the <HEAD> section of -->
  2. <!-- the html page.                                                     -->
  3.  
  4. <SCRIPT LANGUAGE="JavaScript">
  5. var table='results';
  6. function combo(table) {
  7.  
  8.   if (table=='results') {
  9.     if (document.all.results.style.visibility=="hidden") {
  10.         document.all.results.style.visibility="visible";
  11.         document.all.message.style.visibility="hidden";
  12.     }
  13.     else {
  14.         document.all.results.style.visibility="hidden";
  15.         document.all.message.style.visibility="visible";
  16.     }
  17.   }
  18. }
  19. </SCRIPT>