/* README!

   Any and ALL  businesses and/or  individuals found using this script
   without the proper  consent and permission of the author (which can
   be   obtained  by paying the low price for purchasing this  script)
   WILL be sent a letter to 'Cease and Desist' the use of the script -
   if there is failure to comply IMMEDIATE legal action WILL be taken.
 */

function intRound(number,X)
    {
    X = (!X ? 2 : X);
    return Math.floor(number*Math.pow(10,X))/Math.pow(10,X);
    }

function Update(ID)
    {
    intPrice = varWebspace[document.forms["Signup"].Webspace.selectedIndex].Cost + varDatatrns[document.forms["Signup"].Datatrns.selectedIndex].Cost + varFtpaccts[document.forms["Signup"].Ftpaccts.selectedIndex].Cost +  varMysqlphp[document.forms["Signup"].Mysqlphp.selectedIndex].Cost + varDedctdip[document.forms["Signup"].Dedctdip.selectedIndex].Cost + varPopaccts[document.forms["Signup"].Popaccts.selectedIndex].Cost 

    if (document.forms["Signup"].Payment.selectedIndex == 0)
        {
        document.all["pPrice"].innerHTML = '<FONT FACE="' + strTDOneFF + '" SIZE=' + intTDOneFS + ' COLOR="' + strTDOneFC + '">' + strTDOneFB + '<B>Price: $' + intRound(intPrice, 2) + '</B>' + strTDOneFE;
        }
    else
        {
        intPrice = intPrice * 10;
        document.all["pPrice"].innerHTML = '<FONT FACE="' + strTDOneFF + '" SIZE=' + intTDOneFS + ' COLOR="' + strTDOneFC + '">' + strTDOneFB + '<B>Price: $' + intRound(intPrice, 2) + '</B>' + strTDOneFE;
        }
    
    }

function objMenu(ID, Cost, Name)
    {
    this.ID = ID;
    this.Cost = Cost;
    this.Name = Name;
    }

function fncInit()
    {
    intPrice = 0;

    varCountries = new Array('UNITED STATES', 'CANADA', 'UNITED KINGDOM', 'AFGHANISTAN', 'ALBANIA', 'ALGERIA', 'AMERICAN SAMOA', 'ANDORRA', 'ANGOLA', 'ANGUILLA', 'ANTARCTICA', 'ANTIGUA AND BARBUDA', 'ARGENTINA', 'ARMENIA', 'ARUBA', 'AUSTRALIA', 'AUSTRIA', 'AZERBAIJAN', 'BAHAMAS', 'BAHRAIN', 'BANGLADESH', 'BARBADOS', 'BELARUS', 'BELGIUM', 'BELIZE', 'BENIN', 'BERMUDA', 'BHUTAN', 'BOLIVIA', 'BOTSWANA', 'BOUVET ISLAND', 'BRAZIL', 'BRUNEI DARUSSALAM', 'BULGARIA', 'BURKINA FASO', 'BURUNDI', 'CAMBODIA', 'CAMEROON', 'CAPE VERDE', 'CAYMAN ISLANDS', 'CHAD', 'CHILE', 'CHINA', 'CHRISTMAS ISLAND', 'COLOMBIA', 'COMOROS', 'CONGO', 'COOK ISLANDS', 'COSTA RICA', 'COTE DIVOIRE', 'CROATIA', 'CUBA', 'CYPRUS', 'CZECH REPUBLIC', 'DENMARK', 'DJIBOUTI', 'DOMINICA', 'DOMINICAN REPUBLIC', 'EAST TIMOR', 'ECUADOR', 'EGYPT', 'EL SALVADOR', 'EQUATORIAL GUINEA', 'ERITREA', 'ESTONIA', 'ETHIOPIA', 'FALKLAND ISLANDS', 'FAROE ISLANDS', 'FIJI', 'FINLAND', 'FRANCE', 'FRENCH GUIANA', 'FRENCH POLYNESIA', 'GABON GAMBIA', 'GEORGIA', 'GERMANY', 'GHANAGIBRALTAR', 'GREECE', 'GREENLAND', 'GRENADA', 'GUADELOUPE', 'GUAM', 'GUATEMALA', 'GUINEA', 'GUINEA-BISSAU', 'GUYANA', 'HAITI', 'HONDURAS', 'HONG KONG', 'HUNGARY', 'ICELAND', 'INDIA', 'INDONESIA', 'IRAN', 'IRAQ', 'IRELAND', 'ISRAEL', 'ITALY', 'JAMAICA', 'JAPAN', 'JORDAN', 'KAZAKSTAN', 'KENYA', 'KIRIBATI', 'KUWAIT', 'KYRGYZSTAN', 'LATVIA', 'LEBANON', 'LESOTHO', 'LIBERIA', 'LIECHTENSTEIN', 'LITHUANIA', 'LUXEMBOURG', 'MACAU', 'MACEDONIA', 'MADAGASCAR', 'MALAWI', 'MALAYSIA', 'MALDIVES', 'MALI', 'MALTA', 'MARSHALL ISLANDS', 'MARTINIQUE', 'MAURITANIA', 'MAURITIUS', 'MAYOTTE', 'MEXICO', 'MICRONESIA', 'MOLDOVA', 'MONACO', 'MONGOLIA', 'MONTSERRAT', 'MOROCCO', 'MOZAMBIQUE', 'MYANMAR', 'NAMIBIA', 'NAURU', 'NEPAL', 'NETHERLANDS', 'NETHERLANDS ANTILLES', 'NEW CALEDONIA', 'NEW ZEALAND', 'NICARAGUA', 'NIGER', 'NIGERIA', 'NIUE', 'NORFOLK ISLAND', 'NORTHERN MARIANA ISLANDS', 'NORWAY', 'OMAN', 'PAKISTAN', 'PALAU', 'PANAMA', 'PAPUA NEW GUINEA', 'PARAGUAY', 'PERU', 'PHILIPPINES', 'PITCAIRN', 'POLAND', 'PORTUGAL', 'PUERTO RICO', 'QATAR', 'REUNION', 'ROMANIA', 'RUSSIAN FEDERATION', 'RWANDA', 'SAINT HELENA', 'SAINT KITTS AND NEVIS', 'SAINT LUCIA', 'SAINT PIERRE AND MIQUELON', 'SAINT VINCENT', 'SAMOA', 'SAN MARINO', 'SAO TOME AND PRINCIPE', 'SAUDI ARABIA', 'SENEGAL', 'SEYCHELLES', 'SIERRA LEONE', 'SINGAPORE', 'SLOVAKIA', 'SLOVENIA', 'SOLOMON ISLANDS', 'SOMALIA', 'SOUTH AFRICA', 'SPAIN', 'SRI LANKA', 'SUDAN', 'SURINAME', 'SVALBARD AND JAN MAYEN', 'SWAZILAND', 'SWEDEN', 'SWITZERLAND', 'SYRIAN ARAB REPUBLIC', 'TAIWAN', 'TAJIKISTAN', 'TANZANIA', 'THAILAND', 'TOGO', 'TOKELAU', 'TONGA', 'TRINIDAD AND TOBAGO', 'TUNISIA', 'TURKEY', 'TURKMENISTAN', 'TURKS AND CAICOS ISLANDS', 'TUVALU', 'UGANDA', 'UKRAINE', 'UNITED ARAB EMIRATES', 'URUGUAY', 'UZBEKISTAN', 'VANUATU', 'VENEZUELA', 'VIET NAM', 'VIRGIN ISLANDS BRITISH', 'VIRGIN ISLANDS U.S.', 'WALLIS AND FUTUNA', 'WESTERN SAHARA', 'YEMEN', 'YUGOSLAVIA', 'ZAMBIA', 'ZIMBABWE');
    intCountries = 221;

    varPayment = new Array();
    varPayment[0] = 'Monthly';
    varPayment[1] = 'Annually';
    intPayment = 1;

    varWebspace = new Array();
    varWebspace[0] = new objMenu(100, 0.50, '50 MB Disk Space');
    varWebspace[1] = new objMenu(101, 0.95, '100 MB Disk Space');
    varWebspace[2] = new objMenu(102, 1.49, '200 MB Disk Space');
    varWebspace[3] = new objMenu(103, 1.95, '300 MB Disk Space');
    varWebspace[4] = new objMenu(104, 2.95, '400 MB Disk Space');
    varWebspace[5] = new objMenu(105, 3.95, '600 MB Disk Space');
    varWebspace[6] = new objMenu(106, 5.95, '1000 MB Disk Space');
    varWebspace[7] = new objMenu(107, 7.95, '1500 MB Disk Space');
    strWebspace = 'Disk Space:';
    intWebspace = 7;

    varDatatrns = new Array();
    varDatatrns[0] = new objMenu(110, 1.49, '2 GB Data Transfer');
    varDatatrns[1] = new objMenu(111, 3.74, '5 GB Data Transfer');
    varDatatrns[2] = new objMenu(112, 7.49, '10 GB Data Transfer');
    varDatatrns[3] = new objMenu(113, 11.24, '15 GB Data Transfer');
    varDatatrns[4] = new objMenu(114, 14.95, '20 GB Data Transfer');
    strDatatrns = 'Data Transfer (Bandwidth) per Month:';
    intDatatrns = 4;

    varFtpaccts = new Array();
    varFtpaccts[0] = new objMenu(120, 0.25, '1 FTP Accounts');
    varFtpaccts[1] = new objMenu(121, 0.49, '5 FTP Accounts');
    varFtpaccts[2] = new objMenu(122, 0.95, '10 FTP Accounts');
    varFtpaccts[3] = new objMenu(123, 1.95, '25 FTP Accounts');
    varFtpaccts[4] = new objMenu(124, 2.95, '50 FTP Accounts');
    strFtpaccts = 'FTP Accounts:';
    intFtpaccts = 4;
/*
    varProftpds = new Array();
    varProftpds[0] = new objMenu(130, 2.95, 'Yes');
    varProftpds[1] = new objMenu(131, 0, 'No');
    strProftpds = 'ProFTPD FTP Server:';
    intProftpds = 1;
*/
    varMysqlphp = new Array();
    varMysqlphp[0] = new objMenu(140, 0, 'No');
    varMysqlphp[1] = new objMenu(141, 0.10, '1 Database');
    varMysqlphp[2] = new objMenu(141, 0.49, '3 Databases');
    varMysqlphp[3] = new objMenu(141, 1.49, '5 Databases');
    varMysqlphp[4] = new objMenu(141, 2.49, '10 Databases');
    strMysqlphp = 'MySQL Databases and phpMyAdmin:';
    intMysqlphp = 4;
/*
    varFilemngr = new Array();
    varFilemngr[0] = new objMenu(150, 2.95, 'Yes');
    varFilemngr[1] = new objMenu(151, 0, 'No');
    strFilemngr = 'File Manager:';
    intFilemngr = 1;

    varFrontext = new Array();
    varFrontext[0] = new objMenu(160, 0.25, 'Yes');
    varFrontext[1] = new objMenu(161, 0, 'No');
    strFrontext = 'FrontPage Server Extension:';
    intFrontext = 1;

    varSrvrsinc = new Array();
    varSrvrsinc[0] = new objMenu(170, 2.95, 'Yes');
    varSrvrsinc[1] = new objMenu(171, 0, 'No');
    strSrvrsinc = 'Server Side Includes:';
    intSrvrsinc = 1;
*/
    varDedctdip = new Array();
    varDedctdip[0] = new objMenu(180, 2.95, 'Yes');
    varDedctdip[1] = new objMenu(181, 0, 'No');
    strDedctdip = 'Dedicated IP Address:';
    intDedctdip = 1;
/*
    varDomnalsg = new Array();
    varDomnalsg[0] = new objMenu(190, 2.95, 'Yes');
    varDomnalsg[1] = new objMenu(191, 0, 'No');
    strDomnalsg = 'Domain Aliasing:';
    intDomnalsg = 1;

    varBckuprst = new Array();
    varBckuprst[0] = new objMenu(200, 2.95, 'Yes');
    varBckuprst[1] = new objMenu(201, 0, 'No');
    strBckuprst = 'Backup/Restore Feature:';
    intBckuprst = 1;
*/
    varPopaccts = new Array();
    varPopaccts[0] = new objMenu(210, 0.25, '10 POP3 EMail Accounts');
    varPopaccts[1] = new objMenu(211, 0.49, '25 POP3 EMail Accounts');
    varPopaccts[2] = new objMenu(212, 1.49, '50 POP3 EMail Accounts');
    varPopaccts[3] = new objMenu(213, 1.95, '100 POP3 EMail Accounts');
    varPopaccts[4] = new objMenu(214, 2.49, '200 POP3 EMail Accounts');
    varPopaccts[5] = new objMenu(215, 2.95, '300 POP3 EMail Accounts');
    strPopaccts = 'POP3 EMail Accounts:';
    intPopaccts = 5;
/*
    varSqurrlml = new Array();
    varSqurrlml[0] = new objMenu(220, 2.95, 'Yes');
    varSqurrlml[1] = new objMenu(221, 0, 'No');
    strSqurrlml = 'SquirrelMail Web-based Email:';
    intSqurrlml = 1;

    varAutorspd = new Array();
    varAutorspd[0] = new objMenu(230, 2.95, 'Yes');
    varAutorspd[1] = new objMenu(231, 0, 'No');
    strAutorspd = 'Vacation Auto-Responder:';
    intAutorspd = 1;
*/    
    //------------------------CUSTOMIZABLE VARIABLES------------------------//

    strFormAct = 'http://www.eserverhost.com/cgi-bin/form1.pl';                                  //Form action (URL to submit to).
    strFormMtd = 'POST';                                         //Form method.
    strFormSbm = 'Click here to Submit';                         //Form submit button caption.

    strTableBC = '#FFFFFF';                                      //Table border color.
    strTableBG = '';                                             //Table background color.
    strTableBI = 'http://www.gechodesigns.com/jpv1b/images/jprice_background.gif';                 //Table background image.
    strTableWD = '400';                                          //Table width.
    intTableCP = 5;                                              //Table cell padding.
    intTableCS = 0;                                              //Table cell spacing.
    intTableBD = 1;                                              //Table border width.

    strTDOneBG = '';                                             //Left table column (text) background color.
    strTDOneBI = '';                                             //Left table column (text) background image.
    strTDOneAL = 'LEFT';                                         //Left table column (text) content alignment.
    strTDOneWD = '50%';                                          //Left table column (text) width.
    strTDOneFB = '';                                             //Left table column (text) beginning font attributes.
    strTDOneFE = '';                                             //Left table column (text) end font attributes.
    strTDOneFF = 'Tahoma, Verdana';                              //Left table column (text) font face.
    strTDOneFC = '#000000';                                      //Left table column (text) font color.
    intTDOneFS = 2;                                              //Left table column (text) font size.

    strTDTwoBG = '';                                             //Right table column (form) background color.
    strTDTwoBI = '';                                             //Right table column (form) background image.
    strTDTwoAL = 'RIGHT';                                        //Right table column (form) content alignment.
    strTDTwoWD = '50%';                                          //Right table column (form) width.
    strTDTwoFB = '';                                             //Right table column (form) beginning font attributes.
    strTDTwoFE = '';                                             //Right table column (form) end font attributes.
    strTDTwoFF = 'Tahoma, Verdana';                              //Right table column (form) font face.
    strTDTwoFC = '#000000';                                      //Right table column (form) font color.
    intTDTwoFS = 2;                                              //Right table column (form) font size.

    //------------------------DO NOT EDIT BELOW THIS------------------------//

    var pCode = document.all["pManipulate"].innerHTML;

//Table begin
    pCode = pCode + '<FORM NAME="Signup" ACTION="' + strFormAct + '" METHOD="' + strFormMtd + '"><input type="hidden" name="subject" value="EserverHost Quote Information"><input type="hidden" name="mailto" value="webmaster@eserverhost.com">'
    pCode = pCode + '<TABLE WIDTH="' + strTableWD + '" BGCOLOR="' + strTableBG + '" BACKGROUND="' + strTableBI + '" CELLPADDING=' + intTableCP + ' CELLSPACING=' + intTableCS + ' BORDER=' + intTableBD + ' BORDERCOLOR="' + strTableBC + '">';





//Webspace
    pCode = pCode + '   <TR>';
    pCode = pCode + '      <TD WIDTH="' + strTDOneWD + '" BGCOLOR="' + strTDOneBG + '" BACKGROUND="' + strTDOneBI + '" ALIGN="' + strTDOneAL + '">';
    pCode = pCode + '         <FONT FACE="' + strTDOneFF + '" SIZE=' + intTDOneFS + ' COLOR="' + strTDOneFC + '">' + strTDOneFB + strWebspace + strTDOneFE + '</TD>';
    pCode = pCode + '      <TD WIDTH="' + strTDTwoWD + '" BGCOLOR="' + strTDTwoBG + '" BACKGROUND="' + strTDTwoBI + '" ALIGN="' + strTDTwoAL + '">';
    pCode = pCode + '         <FONT FACE="' + strTDTwoFF + '" SIZE=' + intTDTwoFS + ' COLOR="' + strTDTwoFC + '">' + strTDTwoFB;
    pCode = pCode + '         <SELECT ID="Webspace" NAME="Webspace" ONCHANGE="Update(varWebspace[0].ID)" CLASS="Input">';
    for (i=0; i!=intWebspace+1; i++)
        {
        pCode = pCode + '         <OPTION VALUE="' + varWebspace[i].ID + '">' + varWebspace[i].Name;
        }
    pCode = pCode + '</SELECT>' + strTDTwoFE + '</TD>';
    pCode = pCode + '   </TR>';

//Data transfer
    pCode = pCode + '   <TR>';
    pCode = pCode + '      <TD WIDTH="' + strTDOneWD + '" BGCOLOR="' + strTDOneBG + '" BACKGROUND="' + strTDOneBI + '" ALIGN="' + strTDOneAL + '">';
    pCode = pCode + '         <FONT FACE="' + strTDOneFF + '" SIZE=' + intTDOneFS + ' COLOR="' + strTDOneFC + '">' + strTDOneFB + strDatatrns + strTDOneFE + '</TD>';
    pCode = pCode + '      <TD WIDTH="' + strTDTwoWD + '" BGCOLOR="' + strTDTwoBG + '" BACKGROUND="' + strTDTwoBI + '" ALIGN="' + strTDTwoAL + '">';
    pCode = pCode + '         <FONT FACE="' + strTDTwoFF + '" SIZE=' + intTDTwoFS + ' COLOR="' + strTDTwoFC + '">' + strTDTwoFB;
    pCode = pCode + '         <SELECT ID="Datatrns" NAME="Datatrns" ONCHANGE="Update(varDatatrns[0].ID)" CLASS="Input">';
    for (i=0; i!=intDatatrns+1; i++)
        {
        pCode = pCode + '         <OPTION VALUE="' + varDatatrns[i].ID + '">' + varDatatrns[i].Name;
        }
    pCode = pCode + '</SELECT>' + strTDTwoFE + '</TD>';
    pCode = pCode + '   </TR>';

//FTP accounts
    pCode = pCode + '   <TR>';
    pCode = pCode + '      <TD WIDTH="' + strTDOneWD + '" BGCOLOR="' + strTDOneBG + '" BACKGROUND="' + strTDOneBI + '" ALIGN="' + strTDOneAL + '">';
    pCode = pCode + '         <FONT FACE="' + strTDOneFF + '" SIZE=' + intTDOneFS + ' COLOR="' + strTDOneFC + '">' + strTDOneFB + strFtpaccts + strTDOneFE + '</TD>';
    pCode = pCode + '      <TD WIDTH="' + strTDTwoWD + '" BGCOLOR="' + strTDTwoBG + '" BACKGROUND="' + strTDTwoBI + '" ALIGN="' + strTDTwoAL + '">';
    pCode = pCode + '         <FONT FACE="' + strTDTwoFF + '" SIZE=' + intTDTwoFS + ' COLOR="' + strTDTwoFC + '">' + strTDTwoFB;
    pCode = pCode + '         <SELECT ID="Ftpaccts" NAME="Ftpaccts" ONCHANGE="Update(varFtpaccts[0].ID)" CLASS="Input">';
    for (i=0; i!=intFtpaccts+1; i++)
        {
        pCode = pCode + '         <OPTION VALUE="' + varFtpaccts[i].ID + '">' + varFtpaccts[i].Name;
        }
    pCode = pCode + '</SELECT>' + strTDTwoFE + '</TD>';
    pCode = pCode + '   </TR>';
/*
//ProFTPD FTP Server
    pCode = pCode + '   <TR>';
    pCode = pCode + '      <TD WIDTH="' + strTDOneWD + '" BGCOLOR="' + strTDOneBG + '" BACKGROUND="' + strTDOneBI + '" ALIGN="' + strTDOneAL + '">';
    pCode = pCode + '         <FONT FACE="' + strTDOneFF + '" SIZE=' + intTDOneFS + ' COLOR="' + strTDOneFC + '">' + strTDOneFB + strProftpds + strTDOneFE + '</TD>';
    pCode = pCode + '      <TD WIDTH="' + strTDTwoWD + '" BGCOLOR="' + strTDTwoBG + '" BACKGROUND="' + strTDTwoBI + '" ALIGN="' + strTDTwoAL + '">';
    pCode = pCode + '         <FONT FACE="' + strTDTwoFF + '" SIZE=' + intTDTwoFS + ' COLOR="' + strTDTwoFC + '">' + strTDTwoFB;
    pCode = pCode + '         <SELECT ID="Proftpds" NAME="Proftpds" ONCHANGE="Update(varProftpds[0].ID)" CLASS="Input">';
    for (i=0; i!=intProftpds+1; i++)
        {
        pCode = pCode + '         <OPTION VALUE="' + varProftpds[i].ID + '">' + varProftpds[i].Name;
        }
    pCode = pCode + '</SELECT>' + strTDTwoFE + '</TD>';
    pCode = pCode + '   </TR>';
*/
//MySQL Databases and phpMyAdmin
    pCode = pCode + '   <TR>';
    pCode = pCode + '      <TD WIDTH="' + strTDOneWD + '" BGCOLOR="' + strTDOneBG + '" BACKGROUND="' + strTDOneBI + '" ALIGN="' + strTDOneAL + '">';
    pCode = pCode + '         <FONT FACE="' + strTDOneFF + '" SIZE=' + intTDOneFS + ' COLOR="' + strTDOneFC + '">' + strTDOneFB + strMysqlphp + strTDOneFE + '</TD>';
    pCode = pCode + '      <TD WIDTH="' + strTDTwoWD + '" BGCOLOR="' + strTDTwoBG + '" BACKGROUND="' + strTDTwoBI + '" ALIGN="' + strTDTwoAL + '">';
    pCode = pCode + '         <FONT FACE="' + strTDTwoFF + '" SIZE=' + intTDTwoFS + ' COLOR="' + strTDTwoFC + '">' + strTDTwoFB;
    pCode = pCode + '         <SELECT ID="Mysqlphp" NAME="Mysqlphp" ONCHANGE="Update(varMysqlphp[0].ID)" CLASS="Input">';
    for (i=0; i!=intMysqlphp+1; i++)
        {
        pCode = pCode + '         <OPTION VALUE="' + varMysqlphp[i].ID + '">' + varMysqlphp[i].Name;
        }
    pCode = pCode + '</SELECT>' + strTDTwoFE + '</TD>';
    pCode = pCode + '   </TR>';
/*
//File Manager
    pCode = pCode + '   <TR>';
    pCode = pCode + '      <TD WIDTH="' + strTDOneWD + '" BGCOLOR="' + strTDOneBG + '" BACKGROUND="' + strTDOneBI + '" ALIGN="' + strTDOneAL + '">';
    pCode = pCode + '         <FONT FACE="' + strTDOneFF + '" SIZE=' + intTDOneFS + ' COLOR="' + strTDOneFC + '">' + strTDOneFB + strFilemngr + strTDOneFE + '</TD>';
    pCode = pCode + '      <TD WIDTH="' + strTDTwoWD + '" BGCOLOR="' + strTDTwoBG + '" BACKGROUND="' + strTDTwoBI + '" ALIGN="' + strTDTwoAL + '">';
    pCode = pCode + '         <FONT FACE="' + strTDTwoFF + '" SIZE=' + intTDTwoFS + ' COLOR="' + strTDTwoFC + '">' + strTDTwoFB;
    pCode = pCode + '         <SELECT ID="Filemngr" NAME="Filemngr" ONCHANGE="Update(varFilemngr[0].ID)" CLASS="Input">';
    for (i=0; i!=intFilemngr+1; i++)
        {
        pCode = pCode + '         <OPTION VALUE="' + varFilemngr[i].ID + '">' + varFilemngr[i].Name;
        }
    pCode = pCode + '</SELECT>' + strTDTwoFE + '</TD>';
    pCode = pCode + '   </TR>';

//FrontPage Extensions
    pCode = pCode + '   <TR>';
    pCode = pCode + '      <TD WIDTH="' + strTDOneWD + '" BGCOLOR="' + strTDOneBG + '" BACKGROUND="' + strTDOneBI + '" ALIGN="' + strTDOneAL + '">';
    pCode = pCode + '         <FONT FACE="' + strTDOneFF + '" SIZE=' + intTDOneFS + ' COLOR="' + strTDOneFC + '">' + strTDOneFB + strFrontext + strTDOneFE + '</TD>';
    pCode = pCode + '      <TD WIDTH="' + strTDTwoWD + '" BGCOLOR="' + strTDTwoBG + '" BACKGROUND="' + strTDTwoBI + '" ALIGN="' + strTDTwoAL + '">';
    pCode = pCode + '         <FONT FACE="' + strTDTwoFF + '" SIZE=' + intTDTwoFS + ' COLOR="' + strTDTwoFC + '">' + strTDTwoFB;
    pCode = pCode + '         <SELECT ID="Frontext" NAME="Frontext" ONCHANGE="Update(varFrontext[0].ID)" CLASS="Input">';
    for (i=0; i!=intFrontext+1; i++)
        {
        pCode = pCode + '         <OPTION VALUE="' + varFrontext[i].ID + '">' + varFrontext[i].Name;
        }
    pCode = pCode + '</SELECT>' + strTDTwoFE + '</TD>';
    pCode = pCode + '   </TR>';

//Server Side Includes
    pCode = pCode + '   <TR>';
    pCode = pCode + '      <TD WIDTH="' + strTDOneWD + '" BGCOLOR="' + strTDOneBG + '" BACKGROUND="' + strTDOneBI + '" ALIGN="' + strTDOneAL + '">';
    pCode = pCode + '         <FONT FACE="' + strTDOneFF + '" SIZE=' + intTDOneFS + ' COLOR="' + strTDOneFC + '">' + strTDOneFB + strSrvrsinc + strTDOneFE + '</TD>';
    pCode = pCode + '      <TD WIDTH="' + strTDTwoWD + '" BGCOLOR="' + strTDTwoBG + '" BACKGROUND="' + strTDTwoBI + '" ALIGN="' + strTDTwoAL + '">';
    pCode = pCode + '         <FONT FACE="' + strTDTwoFF + '" SIZE=' + intTDTwoFS + ' COLOR="' + strTDTwoFC + '">' + strTDTwoFB;
    pCode = pCode + '         <SELECT ID="Srvrsinc" NAME="Srvrsinc" ONCHANGE="Update(varSrvrsinc[0].ID)" CLASS="Input">';
    for (i=0; i!=intSrvrsinc+1; i++)
        {
        pCode = pCode + '         <OPTION VALUE="' + varSrvrsinc[i].ID + '">' + varSrvrsinc[i].Name;
        }
    pCode = pCode + '</SELECT>' + strTDTwoFE + '</TD>';
    pCode = pCode + '   </TR>';
*/
//Dedicated IP
    pCode = pCode + '   <TR>';
    pCode = pCode + '      <TD WIDTH="' + strTDOneWD + '" BGCOLOR="' + strTDOneBG + '" BACKGROUND="' + strTDOneBI + '" ALIGN="' + strTDOneAL + '">';
    pCode = pCode + '         <FONT FACE="' + strTDOneFF + '" SIZE=' + intTDOneFS + ' COLOR="' + strTDOneFC + '">' + strTDOneFB + strDedctdip + strTDOneFE + '</TD>';
    pCode = pCode + '      <TD WIDTH="' + strTDTwoWD + '" BGCOLOR="' + strTDTwoBG + '" BACKGROUND="' + strTDTwoBI + '" ALIGN="' + strTDTwoAL + '">';
    pCode = pCode + '         <FONT FACE="' + strTDTwoFF + '" SIZE=' + intTDTwoFS + ' COLOR="' + strTDTwoFC + '">' + strTDTwoFB;
    pCode = pCode + '         <SELECT ID="Dedctdip" NAME="Dedctdip" ONCHANGE="Update(varDedctdip[0].ID)" CLASS="Input">';
    for (i=0; i!=intDedctdip+1; i++)
        {
        pCode = pCode + '         <OPTION VALUE="' + varDedctdip[i].ID + '">' + varDedctdip[i].Name;
        }
    pCode = pCode + '</SELECT>' + strTDTwoFE + '</TD>';
    pCode = pCode + '   </TR>';
/*
//Domain Aliasing
    pCode = pCode + '   <TR>';
    pCode = pCode + '      <TD WIDTH="' + strTDOneWD + '" BGCOLOR="' + strTDOneBG + '" BACKGROUND="' + strTDOneBI + '" ALIGN="' + strTDOneAL + '">';
    pCode = pCode + '         <FONT FACE="' + strTDOneFF + '" SIZE=' + intTDOneFS + ' COLOR="' + strTDOneFC + '">' + strTDOneFB + strDomnalsg + strTDOneFE + '</TD>';
    pCode = pCode + '      <TD WIDTH="' + strTDTwoWD + '" BGCOLOR="' + strTDTwoBG + '" BACKGROUND="' + strTDTwoBI + '" ALIGN="' + strTDTwoAL + '">';
    pCode = pCode + '         <FONT FACE="' + strTDTwoFF + '" SIZE=' + intTDTwoFS + ' COLOR="' + strTDTwoFC + '">' + strTDTwoFB;
    pCode = pCode + '         <SELECT ID="Domnalsg" NAME="Domnalsg" ONCHANGE="Update(varDomnalsg[0].ID)" CLASS="Input">';
    for (i=0; i!=intDomnalsg+1; i++)
        {
        pCode = pCode + '         <OPTION VALUE="' + varDomnalsg[i].ID + '">' + varDomnalsg[i].Name;
        }
    pCode = pCode + '</SELECT>' + strTDTwoFE + '</TD>';
    pCode = pCode + '   </TR>';

//Back-Up and Restore Features
    pCode = pCode + '   <TR>';
    pCode = pCode + '      <TD WIDTH="' + strTDOneWD + '" BGCOLOR="' + strTDOneBG + '" BACKGROUND="' + strTDOneBI + '" ALIGN="' + strTDOneAL + '">';
    pCode = pCode + '         <FONT FACE="' + strTDOneFF + '" SIZE=' + intTDOneFS + ' COLOR="' + strTDOneFC + '">' + strTDOneFB + strBckuprst + strTDOneFE + '</TD>';
    pCode = pCode + '      <TD WIDTH="' + strTDTwoWD + '" BGCOLOR="' + strTDTwoBG + '" BACKGROUND="' + strTDTwoBI + '" ALIGN="' + strTDTwoAL + '">';
    pCode = pCode + '         <FONT FACE="' + strTDTwoFF + '" SIZE=' + intTDTwoFS + ' COLOR="' + strTDTwoFC + '">' + strTDTwoFB;
    pCode = pCode + '         <SELECT ID="Bckuprst" NAME="Bckuprst" ONCHANGE="Update(varBckuprst[0].ID)" CLASS="Input">';
    for (i=0; i!=intBckuprst+1; i++)
        {
        pCode = pCode + '         <OPTION VALUE="' + varBckuprst[i].ID + '">' + varBckuprst[i].Name;
        }
    pCode = pCode + '</SELECT>' + strTDTwoFE + '</TD>';
    pCode = pCode + '   </TR>';
*/
//POP3 email accounts
    pCode = pCode + '   <TR>';
    pCode = pCode + '      <TD WIDTH="' + strTDOneWD + '" BGCOLOR="' + strTDOneBG + '" BACKGROUND="' + strTDOneBI + '" ALIGN="' + strTDOneAL + '">';
    pCode = pCode + '         <FONT FACE="' + strTDOneFF + '" SIZE=' + intTDOneFS + ' COLOR="' + strTDOneFC + '">' + strTDOneFB + strPopaccts + strTDOneFE + '</TD>';
    pCode = pCode + '      <TD WIDTH="' + strTDTwoWD + '" BGCOLOR="' + strTDTwoBG + '" BACKGROUND="' + strTDTwoBI + '" ALIGN="' + strTDTwoAL + '">';
    pCode = pCode + '         <FONT FACE="' + strTDTwoFF + '" SIZE=' + intTDTwoFS + ' COLOR="' + strTDTwoFC + '">' + strTDTwoFB;
    pCode = pCode + '         <SELECT ID="Popaccts" NAME="Popaccts" ONCHANGE="Update(varPopaccts[0].ID)" CLASS="Input">';
    for (i=0; i!=intPopaccts+1; i++)
        {
        pCode = pCode + '         <OPTION VALUE="' + varPopaccts[i].ID + '">' + varPopaccts[i].Name;
        }
    pCode = pCode + '</SELECT>' + strTDTwoFE + '</TD>';
    pCode = pCode + '   </TR>';
/*
//Squirrel Webmail
    pCode = pCode + '   <TR>';
    pCode = pCode + '      <TD WIDTH="' + strTDOneWD + '" BGCOLOR="' + strTDOneBG + '" BACKGROUND="' + strTDOneBI + '" ALIGN="' + strTDOneAL + '">';
    pCode = pCode + '         <FONT FACE="' + strTDOneFF + '" SIZE=' + intTDOneFS + ' COLOR="' + strTDOneFC + '">' + strTDOneFB + strSqurrlml + strTDOneFE + '</TD>';
    pCode = pCode + '      <TD WIDTH="' + strTDTwoWD + '" BGCOLOR="' + strTDTwoBG + '" BACKGROUND="' + strTDTwoBI + '" ALIGN="' + strTDTwoAL + '">';
    pCode = pCode + '         <FONT FACE="' + strTDTwoFF + '" SIZE=' + intTDTwoFS + ' COLOR="' + strTDTwoFC + '">' + strTDTwoFB;
    pCode = pCode + '         <SELECT ID="Squrrlml" NAME="Squrrlml" ONCHANGE="Update(varSqurrlml[0].ID)" CLASS="Input">';
    for (i=0; i!=intSqurrlml+1; i++)
        {
        pCode = pCode + '         <OPTION VALUE="' + varSqurrlml[i].ID + '">' + varSqurrlml[i].Name;
        }
    pCode = pCode + '</SELECT>' + strTDTwoFE + '</TD>';
    pCode = pCode + '   </TR>';

//Vacation Auto-Responder
    pCode = pCode + '   <TR>';
    pCode = pCode + '      <TD WIDTH="' + strTDOneWD + '" BGCOLOR="' + strTDOneBG + '" BACKGROUND="' + strTDOneBI + '" ALIGN="' + strTDOneAL + '">';
    pCode = pCode + '         <FONT FACE="' + strTDOneFF + '" SIZE=' + intTDOneFS + ' COLOR="' + strTDOneFC + '">' + strTDOneFB + strAutorspd + strTDOneFE + '</TD>';
    pCode = pCode + '      <TD WIDTH="' + strTDTwoWD + '" BGCOLOR="' + strTDTwoBG + '" BACKGROUND="' + strTDTwoBI + '" ALIGN="' + strTDTwoAL + '">';
    pCode = pCode + '         <FONT FACE="' + strTDTwoFF + '" SIZE=' + intTDTwoFS + ' COLOR="' + strTDTwoFC + '">' + strTDTwoFB;
    pCode = pCode + '         <SELECT ID="Autorspd" NAME="Autorspd" ONCHANGE="Update(varAutorspd[0].ID)" CLASS="Input">';
    for (i=0; i!=intAutorspd+1; i++)
        {
        pCode = pCode + '         <OPTION VALUE="' + varAutorspd[i].ID + '">' + varAutorspd[i].Name;
        }
    pCode = pCode + '</SELECT>' + strTDTwoFE + '</TD>';
    pCode = pCode + '   </TR>';
*/
//Payment Method Selection
    pCode = pCode + '   <TR>';
    pCode = pCode + '      <TD WIDTH="' + strTDOneWD + '" BGCOLOR="' + strTDOneBG + '" BACKGROUND="' + strTDOneBI + '" ALIGN="' + strTDOneAL + '">';
    pCode = pCode + '         <FONT FACE="' + strTDOneFF + '" SIZE=' + intTDOneFS + ' COLOR="' + strTDOneFC + '">' + strTDOneFB + 'Payment Method:' + strTDOneFE + '</TD>';
    pCode = pCode + '      <TD WIDTH="' + strTDTwoWD + '" BGCOLOR="' + strTDTwoBG + '" BACKGROUND="' + strTDTwoBI + '" ALIGN="' + strTDTwoAL + '">';
    pCode = pCode + '         <FONT FACE="' + strTDTwoFF + '" SIZE=' + intTDTwoFS + ' COLOR="' + strTDTwoFC + '">' + strTDTwoFB;
    pCode = pCode + '         <SELECT ID="Payment" NAME="Payment" ONCHANGE="Update()" CLASS="Input">';
    for (i=0; i!=intPayment+1; i++)
        {
        pCode = pCode + '         <OPTION VALUE="' + varPayment[i] + '">' + varPayment[i];
        }
    pCode = pCode + '</SELECT>' + strTDTwoFE + '</TD>';
    pCode = pCode + '   </TR>';

//Delimiter and Price
    pCode = pCode + '   <TR>';
    pCode = pCode + '      <TD HEIGHT=10 WIDTH="' + strTDOneWD + '" BGCOLOR="' + strTDOneBG + '" BACKGROUND="' + strTDOneBI + '" ALIGN="' + strTDOneAL + '">';
    pCode = pCode + '         <DIV ID="pPrice"><B><FONT FACE="' + strTDOneFF + '" SIZE=' + intTDOneFS + ' COLOR="' + strTDOneFC + '">' + strTDOneFB + '<B>Price: $0.00</B>' + strTDOneFE + '</B></DIV></TD>';
    pCode = pCode + '      <TD HEIGHT=10 WIDTH="' + strTDTwoWD + '" BGCOLOR="' + strTDTwoBG + '" BACKGROUND="' + strTDTwoBI + '" ALIGN="' + strTDTwoAL + '">';
    pCode = pCode + '         <FONT FACE="' + strTDTwoFF + '" SIZE=' + intTDTwoFS + ' COLOR="' + strTDTwoFC + '"><BR></TD>';
    pCode = pCode + '   </TR>';

//Extracted from signup.php
    pCode = pCode + '   <TR>';
    pCode = pCode + '      <TD WIDTH="' + strTDOneWD + '" BGCOLOR="' + strTDOneBG + '" BACKGROUND="' + strTDOneBI + '" ALIGN="' + strTDOneAL + '">';
    pCode = pCode + '         <FONT FACE="' + strTDOneFF + '" SIZE=' + intTDOneFS + ' COLOR="' + strTDOneFC + '">' + strTDOneFB + 'User Name:' + strTDOneFE + '</TD>';
    pCode = pCode + '      <TD WIDTH="' + strTDTwoWD + '" BGCOLOR="' + strTDTwoBG + '" BACKGROUND="' + strTDTwoBI + '" ALIGN="' + strTDTwoAL + '">';
    pCode = pCode + '         <FONT FACE="' + strTDTwoFF + '" SIZE=' + intTDTwoFS + ' COLOR="' + strTDTwoFC + '">' + strTDTwoFB;
    pCode = pCode + '         <INPUT TYPE="text" NAME="user" CLASS="Input"></TD>';
    pCode = pCode + '   </TR>';

    pCode = pCode + '   <TR>';
    pCode = pCode + '      <TD WIDTH="' + strTDOneWD + '" BGCOLOR="' + strTDOneBG + '" BACKGROUND="' + strTDOneBI + '" ALIGN="' + strTDOneAL + '">';
    pCode = pCode + '         <FONT FACE="' + strTDOneFF + '" SIZE=' + intTDOneFS + ' COLOR="' + strTDOneFC + '">' + strTDOneFB + 'Password:' + strTDOneFE + '</TD>';
    pCode = pCode + '      <TD WIDTH="' + strTDTwoWD + '" BGCOLOR="' + strTDTwoBG + '" BACKGROUND="' + strTDTwoBI + '" ALIGN="' + strTDTwoAL + '">';
    pCode = pCode + '         <FONT FACE="' + strTDTwoFF + '" SIZE=' + intTDTwoFS + ' COLOR="' + strTDTwoFC + '">' + strTDTwoFB;
    pCode = pCode + '         <INPUT TYPE="text" NAME="pass" CLASS="Input"></TD>';
    pCode = pCode + '   </TR>';

    pCode = pCode + '   <TR>';
    pCode = pCode + '      <TD WIDTH="' + strTDOneWD + '" BGCOLOR="' + strTDOneBG + '" BACKGROUND="' + strTDOneBI + '" ALIGN="' + strTDOneAL + '">';
    pCode = pCode + '         <FONT FACE="' + strTDOneFF + '" SIZE=' + intTDOneFS + ' COLOR="' + strTDOneFC + '">' + strTDOneFB + 'First and Last Name:' + strTDOneFE + '</TD>';
    pCode = pCode + '      <TD WIDTH="' + strTDTwoWD + '" BGCOLOR="' + strTDTwoBG + '" BACKGROUND="' + strTDTwoBI + '" ALIGN="' + strTDTwoAL + '">';
    pCode = pCode + '         <FONT FACE="' + strTDTwoFF + '" SIZE=' + intTDTwoFS + ' COLOR="' + strTDTwoFC + '">' + strTDTwoFB;
    pCode = pCode + '         <INPUT TYPE="text" NAME="name" CLASS="Input"></TD>';
    pCode = pCode + '   </TR>';

    pCode = pCode + '   <TR>';
    pCode = pCode + '      <TD WIDTH="' + strTDOneWD + '" BGCOLOR="' + strTDOneBG + '" BACKGROUND="' + strTDOneBI + '" ALIGN="' + strTDOneAL + '">';
    pCode = pCode + '         <FONT FACE="' + strTDOneFF + '" SIZE=' + intTDOneFS + ' COLOR="' + strTDOneFC + '">' + strTDOneFB + 'Street Address:' + strTDOneFE + '</TD>';
    pCode = pCode + '      <TD WIDTH="' + strTDTwoWD + '" BGCOLOR="' + strTDTwoBG + '" BACKGROUND="' + strTDTwoBI + '" ALIGN="' + strTDTwoAL + '">';
    pCode = pCode + '         <FONT FACE="' + strTDTwoFF + '" SIZE=' + intTDTwoFS + ' COLOR="' + strTDTwoFC + '">' + strTDTwoFB;
    pCode = pCode + '         <INPUT TYPE="text" NAME="address" CLASS="Input"></TD>';
    pCode = pCode + '   </TR>';

    pCode = pCode + '   <TR>';
    pCode = pCode + '      <TD WIDTH="' + strTDOneWD + '" BGCOLOR="' + strTDOneBG + '" BACKGROUND="' + strTDOneBI + '" ALIGN="' + strTDOneAL + '">';
    pCode = pCode + '         <FONT FACE="' + strTDOneFF + '" SIZE=' + intTDOneFS + ' COLOR="' + strTDOneFC + '">' + strTDOneFB + 'City:' + strTDOneFE + '</TD>';
    pCode = pCode + '      <TD WIDTH="' + strTDTwoWD + '" BGCOLOR="' + strTDTwoBG + '" BACKGROUND="' + strTDTwoBI + '" ALIGN="' + strTDTwoAL + '">';
    pCode = pCode + '         <FONT FACE="' + strTDTwoFF + '" SIZE=' + intTDTwoFS + ' COLOR="' + strTDTwoFC + '">' + strTDTwoFB;
    pCode = pCode + '         <INPUT TYPE="text" NAME="city" CLASS="Input"></TD>';
    pCode = pCode + '   </TR>';

    pCode = pCode + '   <TR>';
    pCode = pCode + '      <TD WIDTH="' + strTDOneWD + '" BGCOLOR="' + strTDOneBG + '" BACKGROUND="' + strTDOneBI + '" ALIGN="' + strTDOneAL + '">';
    pCode = pCode + '         <FONT FACE="' + strTDOneFF + '" SIZE=' + intTDOneFS + ' COLOR="' + strTDOneFC + '">' + strTDOneFB + 'State/Province:' + strTDOneFE + '</TD>';
    pCode = pCode + '      <TD WIDTH="' + strTDTwoWD + '" BGCOLOR="' + strTDTwoBG + '" BACKGROUND="' + strTDTwoBI + '" ALIGN="' + strTDTwoAL + '">';
    pCode = pCode + '         <FONT FACE="' + strTDTwoFF + '" SIZE=' + intTDTwoFS + ' COLOR="' + strTDTwoFC + '">' + strTDTwoFB;
    pCode = pCode + '         <INPUT TYPE="text" NAME="state" CLASS="Input"></TD>';
    pCode = pCode + '   </TR>';

    pCode = pCode + '   <TR>';
    pCode = pCode + '      <TD WIDTH="' + strTDOneWD + '" BGCOLOR="' + strTDOneBG + '" BACKGROUND="' + strTDOneBI + '" ALIGN="' + strTDOneAL + '">';
    pCode = pCode + '         <FONT FACE="' + strTDOneFF + '" SIZE=' + intTDOneFS + ' COLOR="' + strTDOneFC + '">' + strTDOneFB + 'Zip/Postal Code:' + strTDOneFE + '</TD>';
    pCode = pCode + '      <TD WIDTH="' + strTDTwoWD + '" BGCOLOR="' + strTDTwoBG + '" BACKGROUND="' + strTDTwoBI + '" ALIGN="' + strTDTwoAL + '">';
    pCode = pCode + '         <FONT FACE="' + strTDTwoFF + '" SIZE=' + intTDTwoFS + ' COLOR="' + strTDTwoFC + '">' + strTDTwoFB;
    pCode = pCode + '         <INPUT TYPE="text" NAME="zip" CLASS="Input"></TD>';
    pCode = pCode + '   </TR>';

    pCode = pCode + '   <TR>';
    pCode = pCode + '      <TD WIDTH="' + strTDOneWD + '" BGCOLOR="' + strTDOneBG + '" BACKGROUND="' + strTDOneBI + '" ALIGN="' + strTDOneAL + '">';
    pCode = pCode + '         <FONT FACE="' + strTDOneFF + '" SIZE=' + intTDOneFS + ' COLOR="' + strTDOneFC + '">' + strTDOneFB + 'Country:' + strTDOneFE + '</TD>';
    pCode = pCode + '      <TD WIDTH="' + strTDTwoWD + '" BGCOLOR="' + strTDTwoBG + '" BACKGROUND="' + strTDTwoBI + '" ALIGN="' + strTDTwoAL + '">';
    pCode = pCode + '         <FONT FACE="' + strTDTwoFF + '" SIZE=' + intTDTwoFS + ' COLOR="' + strTDTwoFC + '">' + strTDTwoFB;
    pCode = pCode + '  <SELECT NAME="country" CLASS="Input">';
    for (i=0; i!=intCountries+1; i++)
        {
        pCode = pCode + '         <OPTION>' + varCountries[i];
        }
    pCode = pCode + '   </SELECT>';
    pCode = pCode + '         </TD>';
    pCode = pCode + '   </TR>';

    pCode = pCode + '   <TR>';
    pCode = pCode + '      <TD WIDTH="' + strTDOneWD + '" BGCOLOR="' + strTDOneBG + '" BACKGROUND="' + strTDOneBI + '" ALIGN="' + strTDOneAL + '">';
    pCode = pCode + '         <FONT FACE="' + strTDOneFF + '" SIZE=' + intTDOneFS + ' COLOR="' + strTDOneFC + '">' + strTDOneFB + 'Phone Number:' + strTDOneFE + '</TD>';
    pCode = pCode + '      <TD WIDTH="' + strTDTwoWD + '" BGCOLOR="' + strTDTwoBG + '" BACKGROUND="' + strTDTwoBI + '" ALIGN="' + strTDTwoAL + '">';
    pCode = pCode + '         <FONT FACE="' + strTDTwoFF + '" SIZE=' + intTDTwoFS + ' COLOR="' + strTDTwoFC + '">' + strTDTwoFB;
    pCode = pCode + '         <INPUT TYPE="text" NAME="phone" CLASS="Input"></TD>';
    pCode = pCode + '   </TR>';

    pCode = pCode + '   <TR>';
    pCode = pCode + '      <TD WIDTH="' + strTDOneWD + '" BGCOLOR="' + strTDOneBG + '" BACKGROUND="' + strTDOneBI + '" ALIGN="' + strTDOneAL + '">';
    pCode = pCode + '         <FONT FACE="' + strTDOneFF + '" SIZE=' + intTDOneFS + ' COLOR="' + strTDOneFC + '">' + strTDOneFB + 'Email Address:' + strTDOneFE + '</TD>';
    pCode = pCode + '      <TD WIDTH="' + strTDTwoWD + '" BGCOLOR="' + strTDTwoBG + '" BACKGROUND="' + strTDTwoBI + '" ALIGN="' + strTDTwoAL + '">';
    pCode = pCode + '         <FONT FACE="' + strTDTwoFF + '" SIZE=' + intTDTwoFS + ' COLOR="' + strTDTwoFC + '">' + strTDTwoFB;
    pCode = pCode + '         <INPUT TYPE="text" NAME="email" CLASS="Input"></TD>';
    pCode = pCode + '   </TR>';

    pCode = pCode + '   <TR>';
    pCode = pCode + '      <TD WIDTH="' + strTDOneWD + '" BGCOLOR="' + strTDOneBG + '" BACKGROUND="' + strTDOneBI + '" ALIGN="' + strTDOneAL + '">';
    pCode = pCode + '         <FONT FACE="' + strTDOneFF + '" SIZE=' + intTDOneFS + ' COLOR="' + strTDOneFC + '">' + strTDOneFB + 'Domain Name:' + strTDOneFE + '</TD>';
    pCode = pCode + '      <TD WIDTH="' + strTDTwoWD + '" BGCOLOR="' + strTDTwoBG + '" BACKGROUND="' + strTDTwoBI + '" ALIGN="' + strTDTwoAL + '">';
    pCode = pCode + '         <FONT FACE="' + strTDTwoFF + '" SIZE=' + intTDTwoFS + ' COLOR="' + strTDTwoFC + '">' + strTDTwoFB;
    pCode = pCode + '         <INPUT TYPE="text" NAME="domain" CLASS="Input"></TD>';
    pCode = pCode + '   </TR>';

//Terms of Use
    pCode = pCode + '   <TR>';
    pCode = pCode + '      <TD WIDTH="' + strTDOneWD + '" BGCOLOR="' + strTDOneBG + '" BACKGROUND="' + strTDOneBI + '" ALIGN="' + strTDOneAL + '" COLSPAN=2>';
    pCode = pCode + '         <FONT FACE="' + strTDOneFF + '" SIZE=' + intTDOneFS + ' COLOR="' + strTDOneFC + '">' + strTDOneFB + '<INPUT TYPE="checkbox" NAME="tou" VALUE="checked">I hereby certify that I have read and agree with all the terms and conditions in the <a href="http://www.eserverhost.com/terms.htm">Terms of Use</a>.</TD>' + strTDOneFE;
    pCode = pCode + '   </TR>';

//Submit
    pCode = pCode + '   <TR>';
    pCode = pCode + '      <TD WIDTH="' + strTDOneWD + '" BGCOLOR="' + strTDOneBG + '" BACKGROUND="' + strTDOneBI + '" ALIGN="' + strTDOneAL + '">';
    pCode = pCode + '         <FONT FACE="' + strTDOneFF + '" SIZE=' + intTDOneFS + ' COLOR="' + strTDOneFC + '"><BR></TD>';
    pCode = pCode + '      <TD WIDTH="' + strTDTwoWD + '" BGCOLOR="' + strTDTwoBG + '" BACKGROUND="' + strTDTwoBI + '" ALIGN="' + strTDTwoAL + '">';
    pCode = pCode + '         <FONT FACE="' + strTDTwoFF + '" SIZE=' + intTDTwoFS + ' COLOR="' + strTDTwoFC + '">' + strTDTwoFB + ' <input type="hidden" name="thankyou" value="http://www.eserverhost.com/custom.htm" target=_self><input type="hidden" name="autorespond" value="yes"><INPUT TYPE="SUBMIT" VALUE="' + strFormSbm + '" CLASS="Button2">' + strTDTwoFE + '</TD>';
    pCode = pCode + '   </TR>';

//Table end
    pCode = pCode + '</TABLE>';
    pCode = pCode + '</FORM>';

    document.all["pManipulate"].innerHTML = pCode;

// Webspace, Datatrns, Ftpaccts, Proftpds, Mysqlphp, Filemngr, Frontext, Srvrsinc
// Dedctdip, Domnalsg, Bckuprst, Popaccts, Squrrlml, Autorspd

    intPrice = varWebspace[0].Cost + varDatatrns[0].Cost + varFtpaccts[0].Cost + varMysqlphp[0].Cost + varDedctdip[0].Cost + varPopaccts[0].Cost

    document.all["pPrice"].innerHTML = '<FONT FACE="' + strTDOneFF + '" SIZE=' + intTDOneFS + ' COLOR="' + strTDOneFC + '">' + strTDOneFB + '<B>Price: $' + intRound(intPrice, 2) + '</B>' + strTDOneFE;
    }
