home *** CD-ROM | disk | FTP | other *** search
- <!-- to hide script contents from old browsers
-
-
-
- function go(msg)
- {
- return(checkData());
- }
-
-
-
- function checkData()
- {
- // check browser version
- var theAgent=navigator.userAgent;
- var x=theAgent.indexOf("/");
- if (x>=0) {
- theVersion=theAgent.substring(x+1,theAgent.length);
- x=theVersion.indexOf(".");
- if (x>0) {
- theVersion=theVersion.substring(0,x);
- }
- if (parseInt(theVersion)>=4) {
- if (theAgent.indexOf("4.0b2")>=0) {
- // Navigator 4.0b2 specific features
-
- toolbar=true;
- menubar=true;
- locationbar=true;
- directory=true;
- statusbar=true;
- scrollbars=true;
- }
- else {
- // Navigator 4.0b3 and later features
-
- toolbar.visible=true;
- menubar.visible=true;
- locationbar.visible=true;
- personalbar.visible=true; // was directory
- statusbar.visible=true;
- scrollbars.visible=true;
- }
- }
- }
-
- return(true);
- }
-
-
-
- function loadData()
- {
- if (parent.controls.generateControls) parent.controls.generateControls();
- }
-
-
-
- function saveData()
- {
- }
-
-
-
- // end hiding contents from old browsers -->
-