home *** CD-ROM | disk | FTP | other *** search
- <!-- This piece of JavaScript should be placed in the <HEAD> section of -->
- <!-- the html page. -->
-
- <SCRIPT LANGUAGE="JavaScript">
- var table='results';
- function combo(table) {
-
- if (table=='results') {
- if (document.all.results.style.visibility=="hidden") {
- document.all.results.style.visibility="visible";
- document.all.message.style.visibility="hidden";
- }
- else {
- document.all.results.style.visibility="hidden";
- document.all.message.style.visibility="visible";
- }
- }
- }
- </SCRIPT>