1. form1: a dialog box and a form with html/java script source
  2. dialogboxes: 3 dialog box types and the script
  3. a html form with button and textbox in whixh some text gets pasted
  4. same as previous, but done with a javascript function
  5. adding numbers input via form text using script function
  6. same, but calculate sum by passing parameters to the function
  7. using keyword "this" and the eval function
  8. same functionality, but passing the entire object as a parameter
  9. processing an expression - two input text boxes and a call to eval()
  10. same example, but uses a button instead of clicking on the window to call script
  11. passing parameters to a function
  12. returning value from a function
  13. script to open a new document page...this one seems to work in IE but not Netscape
  14. calling an external javascript file/function---not currently loading correctly
  15. basesetting allows you to define the script tags for your javascript entries
  16.  if browser might not support javascript
  17. a status bar at the bottom of the window - useful debug tool
  18. getting the current page location or routing to another page location
  19. for loop example sum of ints 1...n
  20. for loop exampe 2:  sum of ints n..m
  21. a multiplication table (for loop#3)
  22. similar, but the script is in the html body and it writes it to a new doc
  23. base converter using textfield, function and an alert box
  24. not too pretty, but it writes 1..30 in binary, octal and hex
  25. generating colors (r,g,b) from user input... watch out...black will effectively erase text on screen
  26. another openpage example
  27. open another window with something in it
  28. another window example, illustrating naming the opened window
  29. a window example showing how to set parameters to the open window
  30. a timer and a cute scrolling textbox
  31. using a timer, display a digital clock in a 1X3 table
  32. a short slideshow using next & previous anchor links
  33. another, using timer and onload/recursive method
  34. the "mouseover" image thing
  35. same (mouseover) but calling a function
  36. same but using slightly different functions
  37. same but preloading the images
  38. php script (server side) and js (client side) retrieve client ip
  39. php and js...create array of images in php and do js slideshow
  40. cookies can be used to save textfield and drop down values on a page