/*----------------------------------------------------------------
                            standard.js
                           ----------------
- Initial creation:        Tuesday, 07 June 2005
- Copyright:               (c) 2005 the cosmotron GOTO group
- Support website:         http://www.thecosmotron.com/
- Support e-mail:          goto@thecosmotron.com

- File information:        version 0.1, Tuesday 07 June 2005

----------------------------------------------------------------*/

/*----------------------------------------------------------------
 This program is free software; you can redistribute it and/or 
 modify it under the terms of the GNU General Public License as
 published by the Free Software Foundation; either version 2 of
 the License, or (at your option) any later version.
 ----------------------------------------------------------------*/

// Start disable button
function disableButton() {
  document.getElementById("able").style.display = "none";
  document.getElementById("disabled").style.display = "inline";
}
// End