home *** CD-ROM | disk | FTP | other *** search
- // Edugen JavaScripts Library V1.0 =========================================
- //
- // File misc.js
- //
- // This file is part of the Edugen JavaScripts Library.
- // Copyright (c) 2002 WWL Corp. - A Subsidiary of John Wiley & Sons, Inc.
- // =========================================================================
-
- function goTo(where)
- {
- document.location.replace(where);
- return false;
- }
-
- function escapez(str)
- {
- var ch;
- var result = "";
- for (var i=0; i<str.length; i++)
- {
- ch = str.substring(i, i+1);
- switch(ch)
- {
- case " ": ch=escape(ch);break;
- case "%": ch=escape(ch);break;
- case "#": ch=escape(ch);break;
- case "&": ch=escape(ch);break;
- case "|": ch=escape(ch);break;
- default:break;
- }
- result += ch;
- }
- return result;
- }
-
-
- var ns = false;
- var ie = false;
-
- if (document.all)
- {
- ie = true;
- }
- else
- {
- ns = true;
- }
-
-