Development JavaScript DHTML

/*
Examples From
JavaScript: The Definitive Guide, Fourth Edition
Legal matters: these files were created by David Flanagan, and are
Copyright (c) 2001 by David Flanagan.  You may use, study, modify, and
distribute them for any purpose.  Please note that these examples are
provided "as-is" and come with no warranty of any kind.
David Flanagan
*/



 var _version = 1.0; 
  _version = 1.1; 
  _version = 1.2; 




  if (_version < 1.1) {
    document.write('

This Page Requires JavaScript 1.1

');
    document.write('Your JavaScript 1.0 browser cannot run this page.
');
  }




    // The actual JavaScript 1.1 code goes here.