home *** CD-ROM | disk | FTP | other *** search
- <!-- to hide script contents from old browsers
-
-
-
- function go(msg)
- {
- if (parent.parent.globals.document.vars.editMode.value == "yes")
- return true;
- else
- return(checkData());
- }
-
-
-
- function checkData()
- {
- return(true);
- }
-
-
-
- function loadData()
- {
- netscape.security.PrivilegeManager.enablePrivilege("AccountSetup");
-
- if (parent.controls.generateControls) parent.controls.generateControls();
-
- if (parent.parent.globals.document.vars.editMode.value != "yes") { // only connect to reggie if editmode is off
-
- var connectStatusFlag = parent.parent.globals.document.setupPlugin.IsDialerConnected();
- if (connectStatusFlag == true) {
- if (confirm("Account Setup can't connect until you close your current connection. Close the connection now?") == false) {
- return;
- }
- parent.parent.globals.document.setupPlugin.DialerHangup();
- }
-
- var theFolder = parent.parent.globals.getConfigFolder(self);
- var theFile = parent.parent.globals.getAcctSetupFilename(self);
- var theRegFile = theFolder + parent.parent.globals.document.vars.regServer.value;
- var intlFlag = parent.parent.globals.GetNameValuePair(theFile,"Mode Selection","IntlMode");
- intlFlag = intlFlag.toLowerCase();
-
-
-
- // determine name of scripting file
-
- var scriptEnabledFlag = "FALSE";
- var theScriptFile = parent.parent.globals.GetNameValuePair(theRegFile,"Dial-In Configuration","ScriptFileName");
- if (theScriptFile != null && theScriptFile != "") {
- theScriptFile = theFolder + theScriptFile;
- scriptEnabledFlag = "TRUE";
- }
- else {
- theScriptFile="";
- scriptEnabledFlag = "FALSE";
- }
-
-
- // determine tty
-
- var ttyFlag = parent.parent.globals.GetNameValuePair(theRegFile,"Security","SecurityDevice");
- ttyFlag = ttyFlag.toLowerCase();
- if (ttyFlag == "yes") {
- ttyFlag = "TRUE";
- }
- else {
- ttyFlag = "FALSE";
- }
-
-
- // determine outside line access string
-
- var outsideLineAccessStr = "";
- if (parent.parent.globals.document.vars.prefixData.value != "") {
- outsideLineAccessStr = parent.parent.globals.document.vars.prefixData.value;
- x = outsideLineAccessStr.indexOf(",");
- if (x<0) outsideLineAccessStr = outsideLineAccessStr + ",";
- }
-
-
- // Fix #75735
- // Allow IAS files to specify DialAsLongDistance and DialAreaCode flags
- // Else check international mode and turn them off
- // Else check against ISP & user area codes and turn them off it they match
- var dialAsLongDistance = parent.parent.globals.GetNameValuePair(theRegFile,"Dial-In Configuration","DialAsLongDistance");
- dialAsLongDistance = dialAsLongDistance.toLowerCase();
-
- var dialAreaCode = parent.parent.globals.GetNameValuePair(theRegFile,"Dial-In Configuration","DialAreaCode");
- dialAreaCode = dialAreaCode.toLowerCase();
-
- if ((dialAsLongDistance != null && dialAsLongDistance!="") || (dialAreaCode != null && dialAreaCode!="") ) {
- // compare these dialer flags against "no" because the default we want is "TRUE"
- var dialAsLongDistanceFlag = (dialAsLongDistance=="no") ? "FALSE":"TRUE";
- var dialAreaCodeFlag = (dialAreaCode == "no") ? "FALSE":"TRUE";
- }
- else if (intlFlag == "yes") {
- var dialAsLongDistanceFlag = "FALSE";
- var dialAreaCodeFlag = "FALSE";
- }
- else {
- var dialAsLongDistanceFlag = "TRUE";
- var dialAreaCodeFlag = "TRUE";
-
- var ispAreaCode="";
- var ispPhoneNum = parent.parent.globals.GetNameValuePair(theRegFile,"Dial-In Configuration","Phone");
- if (ispPhoneNum != null && ispPhoneNum!="") {
- var x=ispPhoneNum.indexOf("(");
- if (x>=0) {
- var y=ispPhoneNum.indexOf(")",x+1);
- ispAreaCode=ispPhoneNum.substring(x+1,y);
- }
- }
- var userAreaCode=parent.parent.globals.document.vars.modemAreaCode.value;
- if (ispAreaCode == userAreaCode) {
- dialAsLongDistanceFlag="FALSE";
- dialAreaCodeFlag = "FALSE";
- }
- }
-
- // configure dialer for Registration Server
-
-
- dialerData = parent.parent.globals.document.setupPlugin.newStringArray(28); // increment this # as new dialer strings are added
- dialerData[0] = "FileName=" + theRegFile;
- dialerData[1] = "AccountName=" + parent.parent.globals.GetNameValuePair(theRegFile,"Dial-In Configuration","SiteName");
- dialerData[2] = "ISPPhoneNum=" + parent.parent.globals.GetNameValuePair(theRegFile,"Dial-In Configuration","Phone");
- dialerData[3] = "LoginName=" + parent.parent.globals.GetNameValuePair(theRegFile,"Dial-In Configuration","Name");
- dialerData[4] = "Password=" + parent.parent.globals.GetNameValuePair(theRegFile,"Dial-In Configuration","Password");
- dialerData[5] = "DNSAddress=" + parent.parent.globals.GetNameValuePair(theRegFile,"IP","DNSAddress");
- dialerData[6] = "DNSAddress2=" + parent.parent.globals.GetNameValuePair(theRegFile,"IP","DNSAddress2");
- dialerData[7] = "DomainName=" + parent.parent.globals.GetNameValuePair(theRegFile,"IP","DomainName");
- dialerData[8] = "IPAddress=" + parent.parent.globals.GetNameValuePair(theRegFile,"IP","IPAddress");
- dialerData[9] = "IntlMode=" + ((intlFlag=="yes") ? "TRUE":"FALSE");
- dialerData[10] = "DialOnDemand=TRUE";
- dialerData[11] = "ModemName=" + parent.parent.globals.document.vars.modem.value;
- dialerData[12] = "ModemType=" + parent.parent.globals.document.setupPlugin.GetModemType(parent.parent.globals.document.vars.modem.value);
- dialerData[13] = "DialType=" + parent.parent.globals.document.vars.dialMethod.value;
- dialerData[14] = "OutsideLineAccess=" + outsideLineAccessStr;
- dialerData[15] = "DisableCallWaiting=" + ((parent.parent.globals.document.vars.cwData.value != "") ? "TRUE":"FALSE");
- dialerData[16] = "DisableCallWaitingCode=" + parent.parent.globals.document.vars.cwData.value;
- dialerData[17] = "UserAreaCode=" + parent.parent.globals.document.vars.modemAreaCode.value; // XXX what to do if international mode?
- dialerData[18] = "CountryCode=" + parent.parent.globals.document.vars.countryCode.value;
- dialerData[19] = "LongDistanceAccess=1"; // XXX
- dialerData[20] = "DialAsLongDistance=" + dialAsLongDistanceFlag; // As processed above (fix #75735)
- dialerData[21] = "DialAreaCode=" + dialAreaCodeFlag; // As processed above (fix #75735)
- dialerData[22] = "ScriptEnabled=" + scriptEnabledFlag;
- dialerData[23] = "ScriptFileName=" + theScriptFile;
- dialerData[24] = "NeedsTTYWindow=" + ttyFlag;
- dialerData[25] = "Location=Home";
- dialerData[26] = "DisconnectTime=" + parent.parent.globals.GetNameValuePair(theFile,"Mode Selection","Dialer_Disconnect_After");
- dialerData[27] = "Path=Server";
-
- // write out dialer data to Java Console
-
- if (parent.parent.globals.document.vars.debugMode.value.toLowerCase() == "yes") {
- parent.parent.globals.debug("\nDialer data (for Registration Server): ");
- var numElements = dialerData.length;
- for (var x=0; x<numElements; x++) {
- parent.parent.globals.debug(" " + x + ": " + dialerData[x]);
- }
- }
-
- parent.parent.globals.document.setupPlugin.DialerConfig(dialerData,true);
-
- // check if we need to reboot
-
- if (parent.parent.globals.document.setupPlugin.NeedReboot() == true) {
- parent.parent.globals.forceReboot("register.htm"); // XXX hardcode in name of next screen???
- return;
- }
-
- if (parent.parent.globals.document.setupPlugin.DialerConnect() == false) {
- parent.parent.globals.document.setupPlugin.DialerHangup();
- window.location.replace("error.htm"); // XXX hardcode in name of next screen???
- return;
- }
-
-
- // get platform (XXX Macintosh should not be uppercased?)
-
- var thePlatform = new String(navigator.userAgent);
- var x=thePlatform.indexOf("(")+1;
- var y=thePlatform.indexOf(";",x+1);
- thePlatform=thePlatform.substring(x,y);
-
- if (thePlatform == "Win16") thePlatform = "WIN31";
- else if (thePlatform == "Win95") thePlatform = "WIN95";
- else if (thePlatform == "WinNT") thePlatform = "WINNT";
-
- // get registration server reference
- /*
- var theFolder = parent.parent.globals.getConfigFolder(self);
- var theRegFile = parent.parent.globals.GetNameValuePair(theFile,"New Acct Mode","RegServer");
- var theRegServer = "";
- if (theRegFile == null || theRegFile == "") {
- theRegFile = parent.parent.globals.document.vars.regServer.value;
- }
- if (theRegFile == null || theRegFile == "") {
- alert("Internal problem determining the Registration Server.");
- return;
- }
- theRegFile = theFolder + theRegFile;
- */
- theRegServer = parent.parent.globals.GetNameValuePair(theRegFile,"IP","RegCGI");
-
- if (theRegServer == null || theRegServer == "") {
- alert("Internal problem determining the Registration Server.");
- }
-
- // build TAPI phone number
-
- var theHomePhone="";
- var thePhone="";
- var theCountry="";
- if (intlFlag == "yes") {
- theHomePhone = parent.parent.globals.document.vars.phoneNumber.value;
- thePhone = parent.parent.globals.document.vars.modemPhoneNumber.value;
- theCountry = parent.parent.globals.document.vars.country.value;
- }
- else {
- theHomePhone = "(" + parent.parent.globals.document.vars.areaCode.value + ") " + parent.parent.globals.document.vars.phoneNumber.value;
- thePhone = "(" + parent.parent.globals.document.vars.modemAreaCode.value + ") " + parent.parent.globals.document.vars.modemPhoneNumber.value;
- theCountry = "USA";
- }
-
- // mangle year and month for submission to registration server
-
- var theYear = parseInt(parent.parent.globals.document.vars.year.value);
- while (theYear >= 100) {
- theYear -= 100;
- }
- if (theYear<10) {
- theYear = "0" + theYear;
- }
-
- var theMonth = parseInt(parent.parent.globals.document.vars.month.value);
- theMonth += 1;
-
-
- // the following values are commented out as the values are set in HTML
-
- /*
- document.forms[0].RS_FORM_TYPE.value = "custinfo";
- document.forms[0].REG_SETUP_NAME.value = "Account Setup";
- document.forms[0].REG_SIGNUP_VERSION.value = "4.0";
- document.forms[0].REG_SCRIPTING.value = "Yes";
- document.forms[0].REG_SOURCE.value = "test";
- document.forms[0].REG_CHANNEL.value = "";
- */
-
-
- // fill out custinfo form elements, then submit
-
- document.forms[0].REG_PLATFORM.value = thePlatform;
- document.forms[0].AS_INTLMODE.value = intlFlag;
-
- document.forms[0].CST_LAST_NAME.value = parent.parent.globals.document.vars.last.value;
- document.forms[0].CST_FIRST_NAME.value = parent.parent.globals.document.vars.first.value;
- document.forms[0].CST_ORGANIZATION_NAME.value = parent.parent.globals.document.vars.company.value;
- document.forms[0].CST_STREET_1.value = parent.parent.globals.document.vars.address1.value;
- document.forms[0].CST_STREET_2.value = parent.parent.globals.document.vars.address2.value;
- document.forms[0].CST_STREET_3.value = parent.parent.globals.document.vars.address3.value;
- document.forms[0].CST_CITY.value = parent.parent.globals.document.vars.city.value;
- document.forms[0].CST_STATE_PROVINCE.value = parent.parent.globals.document.vars.state.value;
- document.forms[0].CST_POSTAL_CODE.value = parent.parent.globals.document.vars.zip.value;
- document.forms[0].CST_COUNTRY.value = theCountry;
- document.forms[0].CST_PHONE.value = thePhone;
- document.forms[0].CST_HOMEPHONE.value = theHomePhone;
- document.forms[0].CST_CC_NO.value = parent.parent.globals.document.vars.cardnumber.value;
- document.forms[0].CST_CC_TYPE.value = parent.parent.globals.document.vars.cardcode.value;
- document.forms[0].CST_CC_MTH_EXPIRE.value = theMonth;
- document.forms[0].CST_CC_YEAR_EXPIRE.value = theYear;
- document.forms[0].CST_CC_CARDHOLDER.value = parent.parent.globals.document.vars.cardname.value;
-
- document.forms[0].CST_JUNK_MAIL.value = ""; // XXX
-
- document.forms[0].action=theRegServer;
-
- // for win32 platforms make sure we don't get ISP's with scripting
-
- if ((thePlatform == "WIN95") || (thePlatform == "WINNT")) {
- document.forms[0].REG_SCRIPTING.value = "No";
- }
-
- // declare animation support for appropriate platform
-
- if (thePlatform == "Macintosh") {
- document.forms[0].AS_MAC_ANIMATION_SUPPORT.value = "YES";
- document.forms[0].AS_WIN_ANIMATION_SUPPORT.value = "NO";
- }
- else {
- document.forms[0].AS_MAC_ANIMATION_SUPPORT.value = "NO";
- document.forms[0].AS_WIN_ANIMATION_SUPPORT.value = "YES";
- }
-
-
- // write out Milan data to Java Console
-
- if (parent.parent.globals.document.vars.debugMode.value.toLowerCase() == "yes") {
- parent.parent.globals.debug("\nRegServer (Milan) data: " + document.forms[0].action);
- var numElements = document.forms[0].length;
- for (var x=0; x<document.forms[0].length; x++) {
- parent.parent.globals.debug(" " + x + ": " + document.forms[0].elements[x].name + "=" + document.forms[0].elements[x].value);
- }
- }
-
- // submit Milan data
-
- navigator.preference("security.warn_submit_insecure", false);
- navigator.preference("security.warn_entering_secure", false);
- navigator.preference("security.warn_leaving_secure", false);
-
- parent.parent.globals.setRegisterMode(1);
- document.forms[0].submit(); // automatically submit form to registration server
- }
- }
-
-
-
- function saveData()
- {
- }
-
-
-
- // end hiding contents from old browsers -->
-