home *** CD-ROM | disk | FTP | other *** search
- // Copyright (C) 1996, 1997 Netscape Communications Corporation, All rights reserved.
-
- var debugOutput = false;
-
- // Displays a message only when debugging.
- function dbgMsg(message) {
- if(debugOutput)
- java.lang.System.out.println(message) ;
- }
-
-
- function isANumber (checkstring)
- {
- for (var i=0; i<checkstring.length; i++)
- {
- if (isNaN(parseInt(checkstring.substring(i,i+1))))
- return false
- }
- return(true);
- }
-
- function verifyIsANumber(field)
- {
-
- if (! isANumber(field.value))
- {
- alert("This field must contain a number");
- field.focus();
- }
- }
-
- function verifyIsTrueFalse(field)
- {
-
- if ( (field.value != 'true') && (field.value != 'false') )
- {
- alert("This field must contain 'true' or 'false'");
- field.focus();
- }
- }
-
- function verifyIsMode(field)
- {
-
- if ( (field.value != 'window') && (field.value != 'full') && (field.value != 'webtop'))
- {
- alert("This field must contain 'window', 'full' or 'webtop' ");
- field.focus();
- }
- }
-
-