Each HTML Page has the following objects:
Object, Property, & Method
Example:
var browserStr=navigator.appName;
/* browserStr will be "Microsoft Internet Explorer",
if you use MS I.E. as your web browser. */
var docURL = document.URL; // the URL of the document.
var inputVar=document.forms[0].elements[0].value;
...
window.status="Welcome to My Home Page!";
document.titleImage.src=myImage.src;
location.href="http://www.yahoo.com/";
...
history.go(-1);
myWin=window.open("http://www.cnn.com/", "win2");
myWin.close();
window.scroll(0,600);