home *** CD-ROM | disk | FTP | other *** search
- <!-- to hide script contents from old browsers
-
- //the file that includes this must also include settings.js!
-
- function loadData()
- {
-
- var acctSetupFile = parent.parent.globals.getAcctSetupFilename(parent.parent.globals);
-
- var tempFlagValue = "";
- var asFormName = "ncioptions";
-
- modeSectionName = "Mode Selection"
- newSectionName = "New Acct Mode"
- existingSectionName = "Existing Acct Mode"
-
- //fill in the lists
- fillNCIFileList(asFormName, "SINGLENCI");
-
- //set the poplist flag
- tempFlagValue = parent.parent.globals.GetNameValuePair(acctSetupFile,modeSectionName,"ExistingSRFile")
-
- if ((tempFlagValue != null) && (tempFlagValue != ""))
- setRadio(asFormName, "poplist", "yes");
- else
- setRadio(asFormName, "poplist", "no");
-
- //set the showphones radio
- tempFlagValue = yesNoToNoYes(parent.parent.globals.GetNameValuePair(acctSetupFile,existingSectionName,"ShowPhones"));
- setRadio(asFormName, "showphones", tempFlagValue);
-
- //set the ShowNoneAbove checkbox
- tempFlagValue = parent.parent.globals.GetNameValuePair(acctSetupFile,existingSectionName,"ShowNoneAbove");
- if (tempFlagValue == null || tempFlagValue == "null" || tempFlagValue == "")
- tempFlagValue="yes"; //default to on
- setCheckBox(asFormName, "ShowNoneAbove", tempFlagValue);
-
- if (parent.controls.generateControls) parent.controls.generateControls();
-
- }//function loadData()
-
-
- function checkData()
- {
- return true;
- }
-
-
- function saveData()
- {
- // save globals here
-
- var acctSetupFile = parent.parent.globals.getAcctSetupFilename(parent.parent.globals);
- var modeSectionName = "Mode Selection";
- var existingSectionName = "Existing Acct Mode";
- var newSectionName = "New Acct Mode";
- var asFormName = "ncioptions";
-
- if (acctSetupFile != null && acctSetupFile != "") {
-
- var existingChosen = getRadio(asFormName, "poplist");
-
- if (existingChosen == "yes")
- {
- parent.parent.globals.SetNameValuePair(acctSetupFile,modeSectionName,"ExistingSRFile", getSelectListSelection(asFormName, "SINGLENCI"));
- }
- else
- {
- parent.parent.globals.SetNameValuePair(acctSetupFile,modeSectionName, "ExistingSRFile", "");
- }
-
- parent.parent.globals.SetNameValuePair(acctSetupFile, existingSectionName, "ShowPhones", yesNoToNoYes(getRadio(asFormName, "showphones")));
- parent.parent.globals.SetNameValuePair(acctSetupFile, existingSectionName, "ShowNoneAbove", getCheckBox(asFormName, "ShowNoneAbove"));
-
- } // if (acctSetupFile != null && acctSetupFile != "")
- }
-
-
- // For easy reference, this is the list of flags that ACCTSET.INI currently supports
- // ForceExisting
- // ExistingSRFile
- // ForceNew
- // IntlMode
- // ShowNewPathInfo
- // AskSaveAcctInfo
- // SavePasswords
- // AskPersonalInfo
- // //AskSurvey //defunct
- // //AskShareInfo //defunct
- // AskBillingInfo
- // RegServer
- // CardTypes
- // ShowExistingPathInfo
- // RegPodURL
- // ShowIntro2
- // ShowPhones
- // AskName
- // AskLogin
- // AskTTY
- // AskEmail
- // AskPhone
- // AskDNS
- // AskHosts
- // AskPublishing
- // AskRegister
- // AskLDAP
- // AskIMAP
-
-
-
- // end hiding contents from old browsers -->
-