home *** CD-ROM | disk | FTP | other *** search
/ Your Business Pak / BusinessPak2.iso / Netscape / CD / as.z / asw.jar / editfour.js < prev    next >
Text File  |  1998-10-15  |  1KB  |  65 lines

  1. /* -*- Mode: Java; tab-width: 4; indent-tabs-mode: nil -*-
  2.  *
  3.  * The contents of this file are subject to the Netscape Public License
  4.  * Version 1.0 (the "NPL"); you may not use this file except in
  5.  * compliance with the NPL.  You may obtain a copy of the NPL at
  6.  * http://www.mozilla.org/NPL/
  7.  *
  8.  * Software distributed under the NPL is distributed on an "AS IS" basis,
  9.  * WITHOUT WARRANTY OF ANY KIND, either express or implied. See the NPL
  10.  * for the specific language governing rights and limitations under the
  11.  * NPL.
  12.  *
  13.  * The Initial Developer of this code under the NPL is Netscape
  14.  * Communications Corporation.  Portions created by Netscape are
  15.  * Copyright (C) 1998 Netscape Communications Corporation.  All Rights
  16.  * Reserved.
  17.  */
  18. <!--  to hide script contents from old browsers
  19.  
  20.         var    thePath = "";
  21.  
  22.  
  23. function go(msg)
  24. {
  25.     if (msg == thePath)    {
  26.         return(checkData());
  27.         }
  28.     return(false);
  29. }
  30.  
  31. function doGo()
  32. {
  33.     parent.controls.go("Next");
  34. }
  35.  
  36. function setPath(msg)
  37. {
  38.     thePath = msg;
  39.     setTimeout("doGo()",1);
  40. }
  41.  
  42. function checkData()
  43. {
  44.     return(true);
  45. }
  46.  
  47.  
  48.  
  49. function loadData()
  50. {
  51.     if (parent && parent.controls && parent.controls.generateControls)    {
  52.         parent.controls.generateControls();
  53.         }
  54. }
  55.  
  56.  
  57.  
  58. function saveData()
  59. {
  60. }
  61.  
  62.  
  63.  
  64. // end hiding contents from old browsers  -->
  65.