value is null or not an object, but its defined?

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • cwizard

    value is null or not an object, but its defined?

    I'm calling on a function from within this form, and there are values set
    but every time it gets called I get slammed with a run time error...
    document.frmKit Amount.txtTotal KitValue is null or not an object... the
    function is like so:

    function calc_total()
    {
    var x,i,base,margin ,total,newmargi n,newtotal;
    base = document.frmKit Amount.txtTotal KitValue.value;
    margin = document.frmKit Amount.margin.v alue/100;
    total = document.frmKit Amount.total.va lue;
    newtotal = (1 + margin) * base;
    document.frmKit Amount.total.va lue = FormatNumber(ne wtotal,2,false, true);
    }

    formatnumber() is elsewhere and it should work fine... the error happens on
    the part where i assign the variable base to be equal to the form value
    txtTotalKitValu e... which is there..... i'm a newbie, and i'm working with
    code thats already in place trying to add a couple little functions to
    basically just display a marked up price in a text box below a current
    price...

    to see this page in action please go to http://67.66.56.168/gss/Corporate
    and in the URL change msg=Fast to msg=QLG and hit enter. go to any of the
    yellow tabs on the top. I appreciate any replies

    <form name="frmKitAmt ">
    <input type="hidden" name="itemname"
    value="<%=Serve r.HTMLEncode(ob jKitList.Name)% >">
    <input type="hidden" name="imglink" value="<%=imgLi nk & objKitList.Imag e%>">
    <input type="hidden" name="descripti on"
    value="<%=Serve r.HTMLEncode(ob jKitList.Descri ption)%>">
    <table border= "0" cellspacing="1" cellpadding="0" width="95%">
    <%If objKitList.Call ForPrice then%>
    <input type="hidden" name="txtTotalK itValue">
    <tr>
    <td class=siteNav1T D valign="middle" colspan="3">
    <img src="images/blank.gif">
    </td></tr>
    <%Else%>
    <tr>
    <td class=siteNav1T D valign="middle" >
    <table width="100%">
    <tr>
    <td colspan="3" align="center" valign="middle" >
    <font face="Verdana" size="2" color="#ffffff" ><strong>Base
    Price:</strong> </font>
    </td>
    <td>
    <font face="Verdana" size="2"
    color="#ffffff" ><strong><%=g_c urrencyString%> &nbsp;<%=Format Number(objkitli s
    t.price * Markup,2)%></strong></font>
    </td>
    <td valign="middle" >
    <font face="Verdana" size="2" color="#FFFFFF" ><strong>Your Price:
    <%=g_currencySt ring%> </strong></font>
    <input type="text" name="txtTotalK itValue"
    value="<%=Forma tNumber(objKitL ist.Price * Markup,2)%>" size="10"
    onFocus="this.b lur();">
    </td>
    </tr>
    <tr>
    <td colspan="4" align="center" valign="middle" >
    <font face="Verdana" size="2" color="#FFFFFF" ><strong>Markup :
    </strong></font>
    <input type="text" name="margin" value="0" size="10"
    onblur="calc_to tal();">
    </td>
    <td valign="middle" >
    <font face="Verdana" size="2" color="#FFFFFF" ><strong>End Price:
    <%=g_currencySt ring%> </strong></font>
    <input type="text" name="total" value="<%=Forma tNumber(objKitL ist.Price
    * Markup,2)%>" size="10">
    </td>
    </tr>
    </table>
    </td>
    <td class=siteNav1T D valign="middle" align="center"< %if Not
    objKitList.Club Totals then%>colspan=" 2"<%End if%> >
    <font face="Verdana" size="1" color="#FFFFFF" ><b>Quantity :</b><br>
    <input name="qty" type="text" size="4" maxlength="4" value="<%If
    objKitList.Qty > 0 Then%><%=objKit List.Qty%><%Els e%>1<%End If%>"></font>
    </td>
    </tr>
    <%End if%>


    <tr>
    <td colspan="3" height="20"><fo nt face="Verdana" size="1">To take a
    printable
    version of this Kit <a href="javascrip t:printkit();"
    class="msn"><st rong>Click here.</strong></a></font></td>
    </tr>
    <tr>
    <td><font face="verdana" size=1><b>Item Name</b></td>
    <%if Not objKitList.Club Totals and not objKitList.Call ForPrice then%>
    <td align="center"> <font face="verdana" size=1><b>Price </b></td>
    <%End if%>
    <td align="center"> <font face="verdana" size=1><b>Qty</b></td>
    </tr>
    <!--
    </table>-->
    </form>


  • Lasse Reichstein Nielsen

    #2
    Re: value is null or not an object, but its defined?

    "cwizard" <cwizard@giblet s.com> writes:
    [color=blue]
    > I'm calling on a function from within this form, and there are values set
    > but every time it gets called I get slammed with a run time error...
    > document.frmKit Amount.txtTotal KitValue is null or not an object...[/color]

    Then it is probably because document.frmKit Amount.txtTotal KitValue
    doesn't exist. Actually an informative error message.
    [color=blue]
    > base = document.frmKit Amount.txtTotal KitValue.value;[/color]

    I recommend:
    var base = document.forms['frmKitAmount'].elements['txtTotalKitVal ue'].value;
    for guaranteed compatability with all current and future browsers
    (it's part of the W3C DOM, whereas having the form name as a property
    of the document object isn't).
    [color=blue]
    > <%If objKitList.Call ForPrice then%>
    > <input type="hidden" name="txtTotalK itValue">[/color]

    We can't use server-side code for anything. The error is in the code
    that is sent to the client!
    However, the obvious guess would be that this If-test is false,
    so the input with name "txtTotalKitVal ue" doesn't exist in the
    page that is sent to the client.

    /L
    --
    Lasse Reichstein Nielsen - lrn@hotpop.com
    DHTML Death Colors: <URL:http://www.infimum.dk/HTML/rasterTriangleD OM.html>
    'Faith without judgement merely degrades the spirit divine.'

    Comment

    • cwizard

      #3
      Re: value is null or not an object, but its defined?

      "Lasse Reichstein Nielsen" <lrn@hotpop.com > wrote in message
      news:pte62f3e.f sf@hotpop.com.. .
      [color=blue]
      > Then it is probably because document.frmKit Amount.txtTotal KitValue
      > doesn't exist. Actually an informative error message.[/color]

      How can it not exist, the form field is there... its part of the source if
      you look at it, there are values assigned.. I don't understand how it is
      null.
      [color=blue]
      > I recommend:
      > var base =[/color]
      document.forms['frmKitAmount'].elements['txtTotalKitVal ue'].value;[color=blue]
      > for guaranteed compatability with all current and future browsers
      > (it's part of the W3C DOM, whereas having the form name as a property
      > of the document object isn't).[/color]

      That looks fine, I used that and it didn't change the results.
      [color=blue]
      >[color=green]
      > > <%If objKitList.Call ForPrice then%>
      > > <input type="hidden" name="txtTotalK itValue">[/color]
      >
      > We can't use server-side code for anything. The error is in the code
      > that is sent to the client!
      > However, the obvious guess would be that this If-test is false,
      > so the input with name "txtTotalKitVal ue" doesn't exist in the
      > page that is sent to the client.[/color]

      No, this if-test is not false because the kit isn't set up as "Call for
      Price"

      Thanks for trying!


      Comment

      • Ang Talunin

        #4
        Re: value is null or not an object, but its defined?

        Hey,

        I've tried to make you're source a little easier:

        <html>
        <head>
        <script>
        function calc_total()
        {
        base = document.frmKit Amount.txtTotal KitValue.value;
        margin = document.frmKit Amount.margin.v alue/100;
        total = document.frmKit Amount.total.va lue;
        newtotal = (1 + margin) * base;
        document.frmKit Amount.total.va lue = newtotal //insert your function:
        FormatNumber(ne wtotal,2,false, true);
        }
        </script>
        </head>
        <body>
        <form name=frmKitAmou nt>
        Base : <input type=text name=txtTotalKi tValue><br>
        Margin : <input type=text name=margin><br >
        Total: <input type=text name=total><br>
        <input type=button onClick=calc_to tal() value="Calc">
        </form>
        </body>
        </html>

        The problem I think is that there isn't a <input> with the name
        "frmKitAmou nt".

        But if you wanne fool around with javascript, just learn it from the
        beginning.
        Make simpel code, so it's easier to find problems....

        good luck,

        A.T.


        Comment

        • cwizard

          #5
          Re: value is null or not an object, but its defined?

          "Ang Talunin" <please.no.spam @no-reply.com> wrote in message
          news:3ff1e90b$0 $16803
          [color=blue]
          > The problem I think is that there isn't a <input> with the name
          > "frmKitAmou nt".[/color]

          No the form name is frmKitAmount, the object is txtTotalKitValu e which is
          already set and is actually updated by another function.
          [color=blue]
          > But if you wanne fool around with javascript, just learn it from the
          > beginning.[/color]

          I wish I had the time, the place I work for just doesn't understand the
          concept.


          Comment

          • Douglas Crockford

            #6
            Re: value is null or not an object, but its defined?

            > > But if you wanne fool around with javascript, just learn it from the[color=blue][color=green]
            > > beginning.[/color][/color]
            [color=blue]
            > I wish I had the time, the place I work for just doesn't understand the
            > concept.[/color]

            It seems unlikely to me that an employer would not want its employees to be
            competent. It is much more common to see employees who lie about their
            qualifications. Where is this place you work for that doesn't understand the
            concept of hiring honest, intelligent people?

            Comment

            • cwizard

              #7
              Re: value is null or not an object, but its defined?

              "Douglas Crockford" <nospam@covad.n et> wrote in message
              news:10c4$3ff1e fd9$436563cd$22 057@msgid.megan ewsservers.com. ..
              [color=blue][color=green][color=darkred]
              > > > But if you wanne fool around with javascript, just learn it from the
              > > > beginning.[/color][/color]
              >[color=green]
              > > I wish I had the time, the place I work for just doesn't understand the
              > > concept.[/color]
              >
              > It seems unlikely to me that an employer would not want its employees to[/color]
              be[color=blue]
              > competent. It is much more common to see employees who lie about their
              > qualifications. Where is this place you work for that doesn't understand[/color]
              the[color=blue]
              > concept of hiring honest, intelligent people?[/color]

              They understand the concept of honest intelligent people, the problem is the
              project that I'm working on is a first for me... I'm working with an
              existing page that already has quite a few jscript functions on it, its got
              3 different forms on the same page and they want it done, oh yesterday....
              the actual thing that I want to accomplish, I already did in a separate page
              http://www.basscomputers.com/marginbox.asp but somehow the exact same
              procedure I used there isn't working here. Its frustrating for me because I
              dont want to be a burden on anyone, I can't figure out why the hell its
              telling me theres no object when the form is THERE and the field is THERE
              and its not mispelled and there's a number assigned to it.

              I'm pretty decent at hacking code, I just can't figure out whats going on
              here and I'm stumped!


              Comment

              • Lasse Reichstein Nielsen

                #8
                Re: value is null or not an object, but its defined?

                "cwizard" <cwizard@giblet s.com> writes:
                [color=blue]
                > How can it not exist, the form field is there... its part of the source if
                > you look at it, there are values assigned.. I don't understand how it is
                > null.[/color]

                You need to look at the code that is sent to the browser. Have you
                tried that, and verified that the input tag is present? Since there is
                obviously a bug *somewhere*, it might be on in the server code, so the
                input tag is never written. In that case, you might be chasing a
                client side error that is only a symptom of the real error.
                [color=blue]
                > No, this if-test is not false because the kit isn't set up as "Call for
                > Price"[/color]

                Maybe it should be there, but that won't change that the browser can't
                find the input element.

                /L
                --
                Lasse Reichstein Nielsen - lrn@hotpop.com
                DHTML Death Colors: <URL:http://www.infimum.dk/HTML/rasterTriangleD OM.html>
                'Faith without judgement merely degrades the spirit divine.'

                Comment

                • cwizard

                  #9
                  Re: value is null or not an object, but its defined?

                  "Lasse Reichstein Nielsen" <lrn@hotpop.com > wrote in message
                  news:llou2cqm.f sf@hotpop.com.. .
                  [color=blue]
                  > You need to look at the code that is sent to the browser. Have you
                  > tried that, and verified that the input tag is present? Since there is
                  > obviously a bug *somewhere*, it might be on in the server code, so the
                  > input tag is never written. In that case, you might be chasing a
                  > client side error that is only a symptom of the real error.[/color]

                  If you mean view-source, I have done that... its funny because the form is
                  there, those fields are there.. the tags are there. Here is a full cut and
                  paste of the source client side.

                  <html>
                  <head>
                  <title>COMPUS A - Kit configuration page</title>
                  <script language="JavaS cript">
                  var Total=0
                  var configArr = new Array()
                  /* ### This function is to get a number in format.
                  If we pass 100 , this funciton will reurn 100.00. ##
                  */
                  function formatValue(val ue)
                  {
                  var a,b,c;
                  a=parseInt(pars eFloat(value));
                  b=parseFloat(va lue) - a;
                  b= b*100;
                  c = (b-parseInt(b))*10
                  if(c>4) b = b + 1;
                  if(b>99)
                  {
                  a = a + 1;
                  b = 0
                  }
                  b = parseInt(b);
                  if(b<10)
                  b=b+"0";
                  if(b<1)
                  b="00";
                  c=a + "." + b;
                  return c;
                  }

                  function printkit()
                  {
                  var no_of_selection s = document.frmKit Upgrades.elemen ts.length;
                  var i;
                  var myWin;
                  var m_Count;
                  var m_String1,m_Str ing2;
                  myWin =
                  window.open('cu stomprint.htm', '_kit','width=5 00,height=500,t oolbar,scrollba r
                  s')
                  myWin.document. open();
                  m_Count = 0;
                  len = document.frmKit Upgrades.elemen ts.length;
                  myWin.document. write("<TITLE>P rintable Version of Kit</TITLE>");
                  myWin.document. write("<table border =0 cellspacing = '8'><tr><td width =
                  100% colspan=2 valign = top><font face = 'verdana, arial' size = 1><B>");

                  myWin.document. write("<img src='" + document.frmKit Amt.imglink.val ue + "'
                  align=left>");

                  myWin.document. write(document. frmKitAmt.itemn ame.value);
                  myWin.document. write("</B><br><br>");
                  myWin.document. write(document. frmKitAmt.descr iption.value);
                  myWin.document. write("</td></tr>");
                  myWin.document. write("<tr><td> <font face = 'verdana, arial' size = 1>KIT
                  PRICE</td><td><font face = 'verdana, arial' size = 1>");

                  myWin.document. write("$" + document.frmKit Amt.txtTotalKit Value.value);

                  myWin.document. write("</font></td></tr>");

                  Sum = 0.0;
                  for(i=0;i<=pars eInt(len)-1;i++)
                  {
                  if((document.fr mKitUpgrades.el ements[i].type.substring (0,3) == "sel") ||
                  (document.frmKi tUpgrades.eleme nts[i].name.substring (0,8) == "upg_name") )
                  {
                  m_Count++;
                  myWin.document. write("<tr><td> <font face = 'verdana, arial' size = 1>");
                  myWin.document. write(eval("doc ument.frmKitUpg rades.kitname" + m_Count +
                  ".value"));
                  myWin.document. write("</td><td><font face = 'verdana, arial' size = 1>");
                  if(document.frm KitUpgrades.ele ments[i].type.substring (0,3) == "sel")
                  {
                  m_String1 =
                  document.frmKit Upgrades.elemen ts[i].options[document.frmKit Upgrades.elemen ts
                  [i].selectedIndex].text;
                  m_String2 = m_String1.index Of("[");
                  if(m_String2 != -1)
                  {
                  m_String1 = m_String1.subst ring(0,m_String 2-1);
                  }
                  }
                  else if(document.frm KitUpgrades.ele ments[i].name.substring (0,8) ==
                  "upg_name")
                  {
                  m_String1 = document.frmKit Upgrades.elemen ts[i].value

                  }
                  else
                  {
                  m_String1 = ""
                  }

                  myWin.document. write(m_String1 );
                  myWin.document. write("</td></tr>");
                  }
                  }
                  myWin.document. write("</table>");
                  myWin.document. close();
                  }
                  /* ### This function is to popup the details of the item selected in the
                  list box.
                  ### sel = To find the name of the list box
                  */
                  function item(sel)
                  {
                  var code;
                  var arr;
                  code =eval("document .frmKitUpgrades .sel" + sel +
                  ".options[document.frmKit Upgrades.sel" + sel + ".selectedI ndex].value");
                  arr = code.split("#") ;
                  window.open("pr intItem.asp?Sou rce=CK&CartId=A CCWARE-12317676VTLOH36 6&ic=" +
                  arr[2],"winPrint","to olbar,height=40 0,width=550,scr ollbars,resizab le");
                  }

                  // ### Total = to hold the base price of kit
                  // ### configArr = to hold the configuration, changing dynamically when ever
                  user changes
                  var Total=0
                  var configArr = new Array()
                  // ### Function to set the kitprice for the first time when the page is
                  loaded
                  // ### Amt is the default price of the kit
                  function SetTotal(Amt)
                  {
                  Total = Amt;

                  CalculateTotal( );

                  }
                  // ### Function to recalculate the total whenever user changes the
                  configuration, and to change to price text box value
                  function CalculateTotal( )
                  {
                  var i,sel_Count,arr PrcQty;
                  var Sum,temp,arr,ar r2,totalvalue,i mgarr;
                  totalvalue=0;
                  len = document.frmKit Upgrades.elemen ts.length;

                  Sum = 0.0;
                  sel_Count = 0;
                  if(document.frm KitUpgrades.upg _name1) {
                  } else {
                  imgarr =
                  document.frmKit Upgrades.elemen ts[1].options[document.frmKit Upgrades.elemen ts
                  [1].selectedIndex].value.split("# ");
                  eval("document. kitimage.src = " + "'" + "/mmgss/Images/" + imgarr[0] +
                  "-100.gif'");
                  }
                  for(i=0;i<=pars eInt(len)-1;i++)
                  {
                  if(document.frm KitUpgrades.ele ments[i].type.substring (0,3) == "sel")
                  {
                  arr =
                  document.frmKit Upgrades.elemen ts[i].options[document.frmKit Upgrades.elemen ts
                  [i].selectedIndex].value.split("# ");
                  arr2 = document.frmKit Upgrades.elemen ts[i].options[0].value.split("# ");
                  if(document.frm KitUpgrades.ele ments[i].selectedIndex == 0)
                  Sum = parseFloat(Sum) + parseFloat(arr[3] * arr[4]);
                  else
                  Sum = parseFloat(Sum) + parseFloat((par seFloat(arr[1]) +
                  parseFloat(arr2[3])) * arr2[4]);
                  configArr[sel_Count] =
                  parseInt(docume nt.frmKitUpgrad es.elements[i].selectedIndex) +parseInt(1);
                  sel_Count = parseInt(sel_Co unt) + 1;

                  if(arr.length == 5){
                  eval("document. frmKitUpgrades. price" + sel_Count + ".value=" +
                  formatValue(arr[3] * 1.25));
                  setFormat("frmK itUpgrades.pric e" + sel_Count);}
                  else
                  {
                  temp = arr[1];
                  temp = parseFloat(temp ) + parseFloat(arr2[3]);
                  eval("document. frmKitUpgrades. price" + sel_Count + ".value=" +
                  formatValue(tem p * 1.25));
                  setFormat("frmK itUpgrades.pric e" + sel_Count);
                  }



                  }

                  if(document.frm KitUpgrades.ele ments[i].name.substring (0,13) ==
                  "upgradehidden" )
                  {

                  configArr[sel_Count] = 1;
                  sel_Count = parseInt(sel_Co unt) + 1;

                  }

                  }

                  for(i=0;i<=pars eInt(len)-1;i++)
                  {
                  if(document.frm KitUpgrades.ele ments[i].name.substring (0,13) ==
                  "upgradehidden" )
                  {
                  arrPrcQty = document.frmKit Upgrades.elemen ts[i].value.split("# ");
                  totalvalue= totalvalue + parseFloat(arrP rcQty[0] * arrPrcQty[1]);
                  }

                  }
                  document.frmKit Amt.txtTotalKit Value.value = formatValue((pa rseFloat(Sum)+
                  totalvalue) * 1.25);
                  setFormat("frmK itAmt.txtTotalK itValue");

                  //var base,margin,tot al,newmargin,ne wtotal;
                  //base = formatValue((pa rseFloat(Sum)+ totalvalue) * 1.25);
                  //margin = document.frmKit Amount.margin.v alue/100;
                  //total = document.frmKit Amount.total.va lue;
                  //newtotal = (1 + margin) * base;
                  //document.frmKit Amount.total.va lue = FormatNumber(ne wtotal,2,false, true);

                  }

                  function FormatNumber(nu m, decimalNum, bolLeadingZero, bolParens)
                  /* IN - num: the number to be formatted
                  decimalNum: the number of decimals after the digit
                  bolLeadingZero: true / false to use leading zero
                  bolParens: true / false to use parenthesis for - num

                  RETVAL - formatted number
                  */
                  {
                  var tmpNum = num;

                  // Return the right number of decimal places
                  tmpNum *= Math.pow(10,dec imalNum);
                  tmpNum = Math.floor(tmpN um);
                  tmpNum /= Math.pow(10,dec imalNum);

                  var tmpStr = new String(tmpNum);

                  // See if we need to hack off a leading zero or not
                  if (!bolLeadingZer o && num < 1 && num > -1 && num !=0)
                  if (num > 0)
                  tmpStr = tmpStr.substrin g(1,tmpStr.leng th);
                  else
                  // Take out the minus sign out (start at 2)
                  tmpStr = "-" + tmpStr.substrin g(2,tmpStr.leng th);


                  // See if we need to put parenthesis around the number
                  if (bolParens && num < 0)
                  tmpStr = "(" + tmpStr.substrin g(1,tmpStr.leng th) + ")";


                  return tmpStr;
                  }

                  function calc_total()
                  {
                  var base = document.frmKit Amount.txtTotal KitValue.value;
                  var margin = document.frmKit Amount.margin.v alue/100;
                  var total = document.frmKit Amount.total.va lue;
                  var newtotal = (1 + margin) * base;
                  document.frmKit Amount.total.va lue = FormatNumber(ne wtotal,2,false, true);
                  }

                  function setFormat(field )
                  {
                  var m_Field = eval("document. " + field);
                  if(m_Field.valu e.indexOf(".") < 0)
                  m_Field.value = m_Field.value + ".00";
                  if(m_Field.valu e.length-m_Field.value.i ndexOf(".") == 2)
                  m_Field.value = m_Field.value + "0";
                  if(m_Field.valu e.length-m_Field.value.i ndexOf(".") > 3)
                  m_Field.value = m_Field.value.s ubstring(0,m_Fi eld.value.index Of(".")+3);
                  }

                  // ### This function is used for to submit the form
                  // ### In the form we are passing quantity seleced by the user, and kit
                  configuration selected by the user, and the action
                  // ### todo is the action to be done, whether to add the kit as new, or
                  update a kit info in the cart

                  function CheckConfig(tod o)
                  {

                  if(document.frm KitAmt.qty.valu e.indexOf(" ") > -1)
                  {
                  alert("Enter Valid Quantity");
                  document.frmKit Amt.qty.focus() ;
                  return;
                  }
                  if(document.frm KitAmt.qty.valu e < 1)
                  {
                  alert("Enter Valid Quantity");
                  document.frmKit Amt.qty.focus() ;
                  return;
                  }
                  if(isNaN(docume nt.frmKitAmt.qt y.value))
                  {
                  alert("Enter Valid Quantity");
                  document.frmKit Amt.qty.focus() ;
                  return;
                  }
                  if(document.frm KitAmt.qty.valu e=="")
                  {
                  alert("Enter Valid Quantity");
                  document.frmKit Amt.qty.focus() ;
                  return;
                  }
                  document.frmKit Info.qty.value = document.frmKit Amt.qty.value;
                  document.frmKit Info.configArr. value = configArr;
                  document.frmKit Info.todo.value = todo;
                  document.frmKit Info.submit();


                  }
                  </script>
                  <style TYPE="text/css">
                  ..siteNavTD
                  {
                  BACKGROUND-COLOR: #cfcf90
                  }
                  ..siteNav1TD
                  {
                  BACKGROUND-COLOR: #930018
                  }
                  ..siteNav2TD
                  {
                  BACKGROUND-COLOR: #fbf66b
                  }
                  ..siteNav3TD
                  {
                  BACKGROUND-COLOR: #ebebeb
                  }
                  ..siteNav4TD
                  {
                  BACKGROUND-COLOR: #c0c0c0
                  }
                  ..siteNav5TD
                  {
                  BACKGROUND-COLOR: white
                  }
                  ..siteNav6TD
                  {
                  BACKGROUND-COLOR: #4f4f4f
                  }
                  ..siteNav7TD
                  {
                  BACKGROUND-COLOR: #ffffcc
                  }
                  ..pgheadinv
                  {
                  FONT-WEIGHT: bold;
                  FONT-SIZE: 12px;
                  COLOR: #000000;
                  FONT-FAMILY: verdana,helveti ca,arial
                  }
                  ..pghead
                  {
                  FONT-WEIGHT: bold;
                  FONT-SIZE: 12px;
                  COLOR: white;
                  FONT-FAMILY: verdana,helveti ca,arial
                  }
                  ..subheadinv
                  {
                  FONT-WEIGHT: bold;
                  FONT-SIZE: 10px;
                  COLOR: #ffffff;
                  FONT-FAMILY: verdana,helveti ca,arial
                  }
                  ..subhead
                  {
                  FONT-WEIGHT: normal;
                  FONT-SIZE: 10px;
                  COLOR: #000000;
                  FONT-FAMILY: verdana,helveti ca,arial
                  }
                  ..content
                  {
                  FONT-WEIGHT: normal;
                  FONT-SIZE: 10px;
                  COLOR: #000000;
                  FONT-FAMILY: verdana,helveti ca,arial
                  }
                  A.inverse:link
                  {
                  FONT-WEIGHT: bold;
                  FONT-SIZE: 10px;
                  COLOR: white;
                  FONT-FAMILY: verdana,helveti ca,arial,arial;
                  TEXT-DECORATION: none
                  }
                  A.inverse:visit ed
                  {
                  FONT-WEIGHT: bold;
                  FONT-SIZE: 10px;
                  COLOR: white;
                  FONT-FAMILY: verdana,helveti ca,arial,arial;
                  TEXT-DECORATION: none
                  }
                  A.inverse:activ e
                  {
                  FONT-WEIGHT: bold;
                  FONT-SIZE: 10px;
                  COLOR: red;
                  FONT-FAMILY: verdana,helveti ca,arial,arial;
                  TEXT-DECORATION: none
                  }
                  A.inverse:hover
                  {
                  FONT-WEIGHT: bold;
                  FONT-SIZE: 10px;
                  COLOR: red;
                  FONT-FAMILY: verdana,helveti ca,arial,arial;
                  TEXT-DECORATION: none
                  }
                  A:link
                  {
                  FONT-WEIGHT: bold;
                  FONT-SIZE: 10px;
                  COLOR: black;
                  FONT-FAMILY: verdana,helveti ca,arial,arial;
                  TEXT-DECORATION: none
                  }
                  A:visited
                  {
                  FONT-WEIGHT: bold;
                  FONT-SIZE: 10px;
                  COLOR: black;
                  FONT-FAMILY: verdana,helveti ca,arial,arial;
                  TEXT-DECORATION: none
                  }
                  A:active
                  {
                  FONT-WEIGHT: bold;
                  FONT-SIZE: 10px;
                  COLOR: red;
                  FONT-FAMILY: verdana,helveti ca,arial,arial;
                  TEXT-DECORATION: none
                  }
                  A:hover
                  {
                  FONT-WEIGHT: bold;
                  COLOR: red;
                  FONT-FAMILY: verdana,helveti ca,arial,arial;
                  TEXT-DECORATION: none;
                  font-size10pxt:
                  }
                  ..CustomKitDrop Down
                  {
                  FONT-SIZE: 8pt;
                  WIDTH: 280pt;
                  FONT-FAMILY: Arial
                  }
                  ..CustomKitPric eBox
                  {
                  FONT-SIZE: 10pt;
                  FONT-FAMILY: Arial;
                  TEXT-ALIGN: right
                  }
                  </STYLE>
                  </head>

                  <body topmargin=4 leftmargin=4 marginwidth=4 marginheight=4 class=siteNav5T D[color=blue]
                  >[/color]
                  <table BORDER="0" CELLPADDING="0" CELLSPACING="0" width="770" ID="Table1">
                  <tr><td colspan=3>
                  <script language=javasc ript>
                  //function to check for logout, if there are items inside cart...
                  function check()
                  {

                  if ((confirm("Cont ents of shopping cart will be lost if you logout now. If
                  you wish to continue press OK.")))
                  {
                  window.document .location.href =
                  "logout.asp?Car tId=ACCWARE-12317676VTLOH36 6";
                  return false;
                  }

                  }
                  </script>
                  <table BORDER="0" CELLPADDING="0" CELLSPACING="0" bgcolor=white> <!--TABLE
                  A-->
                  <tr> <!--R1.A-->
                  <td> <!--C1.A-->
                  <table cellpadding=0 cellspacing=0 width=100% border=0>
                  <tr>
                  <td width=18% align=left bgcolor=#000066 >
                  <IMG SRC="images/compusalogo.jpg " BORDER=0 align=top>
                  </td>
                  <td width=380 bgcolor=#000066 >
                  &nbsp;
                  </td>
                  <td align=right valign=top bgcolor=#000066 >
                  <table cellpadding=0 cellspacing=0 border=0 valign=top>
                  <tr>

                  <td align=right>
                  <a href="logout.as p?cartID=ACCWAR E-12317676VTLOH36 6">
                  <img src=images/logout.gif alt= "Logout" border=0></a></td>

                  </tr>
                  <!--<tr><td align=right><a
                  href="viewcart. asp?CartId=ACCW ARE-12317676VTLOH36 6"><img
                  src=images/vcart.gif alt= "View Your Cart Contents" border=0[color=blue]
                  ></a></td></tr>-->[/color]
                  <!--<tr><td width=150 align=right><a
                  href="accinfo.a sp?CartId=ACCWA RE-12317676VTLOH36 6"><img
                  src=images/acc_info.gif alt= "My account info" border=0></a></td></tr>-->
                  <tr>
                  <td width=150 align=right><a
                  href="ordlist.a sp?CartId=ACCWA RE-12317676VTLOH36 6&ichoice=4"><i mg
                  src=images/ticket.gif alt= "Check Build Status" border=0 ></a></td>
                  </tr>
                  <tr>
                  <td width=150 align=right><a
                  href="ordlist.a sp?CartId=ACCWA RE-12317676VTLOH36 6&ichoice=0"><i mg
                  src=images/buildstatus.gif alt= "Check Build Status" border=0 ></a></td>
                  </tr>
                  <tr><td width=150 align=right><a
                  href="checkout. asp?CartId=ACCW ARE-12317676VTLOH36 6&tag="><img
                  src=images/checkout.gif alt= "Check out to Proceed to Your Order"
                  border=0></a></td></tr>

                  </table>
                  </td>
                  </tr>
                  </table>
                  </td>
                  </tr>
                  </table>
                  <br>
                  </td></tr>
                  <tr>
                  <td bgcolor=white valign=top colspan=3>
                  <table cellpadding=0 cellspacing=0 border=0 >
                  <tr>
                  <td valign=bottom>
                  <table BORDER= "0" CELLPADDING="0" CELLSPACING="0" WIDTH="80"
                  ID="Table1">
                  <tr>
                  <td align="right" valign="bottom" rowspan="2" class=siteNav2T D>
                  <img src="images/tab-01-01.gif" width="10" height="2" ><br>
                  <img src="images/tab-02-01.gif" width="10" height="25"></td>
                  <td bgcolor="black" valign=bottom height="1"><img src="images/blank.gif"
                  height="1"></td>
                  <td rowspan="2" valign="bottom" align="left" class=siteNav2T D>
                  <img src="images/tab-01-03.gif" width="10" height="2" ><br>
                  <img src="images/tab-02-03.gif" width="10" height="25" ></td>
                  </tr>
                  <tr>
                  <td class=siteNav2T D width = "100%" align="center" valign="middle"
                  nowrap><A HREF="index.asp ?CartId=ACCWARE-12317676VTLOH36 6&tag=" ><font
                  face="Verdana, Arial" size="2"><B>Hom e</b></font></a></td>
                  </tr>
                  <!-- USE THIS CODE TO MAKE A BLANK TAB
                  <tr>
                  <td class=siteNav3T D height=2 align=left><img SRC="images/bdot.gif"
                  HEIGHT="2" width="3" BORDER="0"></td>
                  <td class=siteNav3T D colspan=2 height=2 align=right><im g
                  SRC="images/blank.gif" width=69 HEIGHT="2" BORDER="0"><img
                  SRC="images/bdot.gif" WIDTH="2" HEIGHT="2" BORDER="0"></td>
                  </tr>
                  -->
                  <tr>
                  <td bgcolor="black" ><img SRC="images/bdot.gif" WIDTH="10" HEIGHT="2"
                  BORDER="0"></td>
                  <td bgcolor="black" ><img SRC="images/bdot.gif" WIDTH="69" HEIGHT="2"
                  BORDER="0"></td>
                  <td bgcolor="black" ><img SRC="images/bdot.gif" WIDTH="10" HEIGHT="2"
                  BORDER="0"></td>
                  </tr>
                  </table>
                  </td>
                  <td valign=bottom>
                  <table BORDER= "0" CELLPADDING="0" CELLSPACING="0" WIDTH="80"
                  ID="Table1">
                  <tr>
                  <td align="right" valign="bottom" rowspan="2" class=siteNav2T D>
                  <img src="images/tab-01-01.gif" width="10" height="2" ><br>
                  <img src="images/tab-02-01.gif" width="10" height="25"></td>
                  <td bgcolor="black" valign=bottom height="1"><img src="images/blank.gif"
                  height="1"></td>
                  <td rowspan="2" valign="bottom" align="left" class=siteNav2T D>
                  <img src="images/tab-01-03.gif" width="10" height="2" ><br>
                  <img src="images/tab-02-03.gif" width="10" height="25" ></td>
                  </tr>
                  <tr>
                  <td class=siteNav2T D width = "100%" align="center" valign="middle"
                  nowrap>
                  <A
                  HREF="customkit items.asp?CartI d=ACCWARE-12317676VTLOH36 6&ic=BTOWKS01&t ag="[color=blue]
                  ><font face="Verdana, Arial" size="2"><font face="Verdana, Arial"[/color]
                  size="2"><B>AMD AthlonXP & Duron</b></font></a></td>
                  </tr>
                  <!-- USE THIS CODE TO MAKE A BLANK TAB
                  <tr>
                  <td class=siteNav3T D height=2 align=left><img SRC="images/bdot.gif"
                  HEIGHT="2" width="3" BORDER="0"></td>
                  <td class=siteNav3T D colspan=2 height=2 align=right><im g
                  SRC="images/blank.gif" width=69 HEIGHT="2" BORDER="0"><img
                  SRC="images/bdot.gif" WIDTH="2" HEIGHT="2" BORDER="0"></td>
                  </tr>
                  -->
                  <tr>
                  <td bgcolor="black" ><img SRC="images/bdot.gif" WIDTH="10" HEIGHT="2"
                  BORDER="0"></td>
                  <td bgcolor="black" ><img SRC="images/bdot.gif" WIDTH="69" HEIGHT="2"
                  BORDER="0"></td>
                  <td bgcolor="black" ><img SRC="images/bdot.gif" WIDTH="10" HEIGHT="2"
                  BORDER="0"></td>
                  </tr>
                  </table>
                  </td>
                  <td valign=bottom>
                  <table BORDER= "0" CELLPADDING="0" CELLSPACING="0" WIDTH="80"
                  ID="Table1">
                  <tr>
                  <td align="right" valign="bottom" rowspan="2" class=siteNav2T D>
                  <img src="images/tab-01-01.gif" width="10" height="2" ><br>
                  <img src="images/tab-02-01.gif" width="10" height="25"></td>
                  <td bgcolor="black" valign=bottom height="1"><img src="images/blank.gif"
                  height="1"></td>
                  <td rowspan="2" valign="bottom" align="left" class=siteNav2T D>
                  <img src="images/tab-01-03.gif" width="10" height="2" ><br>
                  <img src="images/tab-02-03.gif" width="10" height="25" ></td>
                  </tr>
                  <tr>
                  <td class=siteNav2T D width = "100%" align="center" valign="middle"
                  nowrap>
                  <A
                  HREF="customkit items.asp?CartI d=ACCWARE-12317676VTLOH36 6&ic=BTOSHU01&t ag="[color=blue]
                  ><font face="Verdana, Arial" size="2"><font face="Verdana, Arial"[/color]
                  size="2"><B>Min i AMD XP System</b></font></a></td>
                  </tr>
                  <!-- USE THIS CODE TO MAKE A BLANK TAB
                  <tr>
                  <td class=siteNav3T D height=2 align=left><img SRC="images/bdot.gif"
                  HEIGHT="2" width="3" BORDER="0"></td>
                  <td class=siteNav3T D colspan=2 height=2 align=right><im g
                  SRC="images/blank.gif" width=69 HEIGHT="2" BORDER="0"><img
                  SRC="images/bdot.gif" WIDTH="2" HEIGHT="2" BORDER="0"></td>
                  </tr>
                  -->
                  <tr>
                  <td bgcolor="black" ><img SRC="images/bdot.gif" WIDTH="10" HEIGHT="2"
                  BORDER="0"></td>
                  <td bgcolor="black" ><img SRC="images/bdot.gif" WIDTH="69" HEIGHT="2"
                  BORDER="0"></td>
                  <td bgcolor="black" ><img SRC="images/bdot.gif" WIDTH="10" HEIGHT="2"
                  BORDER="0"></td>
                  </tr>
                  </table>
                  </td>

                  <!--
                  <td valign=bottom>
                  <table BORDER= "0" CELLPADDING="0" CELLSPACING="0" WIDTH="80"
                  ID="Table1">
                  <tr>
                  <td align="right" valign="bottom" rowspan="2" class=siteNav2T D>
                  <img src="images/tab-01-01.gif" width="10" height="2" ><br>
                  <img src="images/tab-02-01.gif" width="10" height="25"></td>
                  <td bgcolor="black" valign=bottom height="1"><img src="images/blank.gif"
                  height="1"></td>
                  <td rowspan="2" valign="bottom" align="left" class=siteNav2T D>
                  <img src="images/tab-01-03.gif" width="10" height="2" ><br>
                  <img src="images/tab-02-03.gif" width="10" height="25" ></td>
                  </tr>
                  <tr>
                  <td class=siteNav2T D width = "100%" align="center" valign="middle"
                  nowrap>
                  <A
                  HREF="customkit items.asp?CartI d=ACCWARE-12317676VTLOH36 6&ic=GSSBT02&ta g="[color=blue]
                  ><font face="Verdana, Arial" size="2"><B>AMD AthlonXP</b></font></a></td>[/color]
                  </tr>
                  -->
                  <!-- USE THIS CODE TO MAKE A BLANK TAB
                  <tr>
                  <td class=siteNav3T D height=2 align=left><img SRC="images/bdot.gif"
                  HEIGHT="2" width="3" BORDER="0"></td>
                  <td class=siteNav3T D colspan=2 height=2 align=right><im g
                  SRC="images/blank.gif" width=69 HEIGHT="2" BORDER="0"><img
                  SRC="images/bdot.gif" WIDTH="2" HEIGHT="2" BORDER="0"></td>
                  </tr>
                  -->
                  <!--
                  <tr>
                  <td bgcolor="black" ><img SRC="images/bdot.gif" WIDTH="10" HEIGHT="2"
                  BORDER="0"></td>
                  <td bgcolor="black" ><img SRC="images/bdot.gif" WIDTH="69" HEIGHT="2"
                  BORDER="0"></td>
                  <td bgcolor="black" ><img SRC="images/bdot.gif" WIDTH="10" HEIGHT="2"
                  BORDER="0"></td>
                  </tr>
                  </table>
                  </td>
                  -->

                  <td valign=bottom>
                  <table BORDER= "0" CELLPADDING="0" CELLSPACING="0" WIDTH="80"
                  ID="Table1">
                  <tr>
                  <td align="right" valign="bottom" rowspan="2" class=siteNav2T D>
                  <img src="images/tab-01-01.gif" width="10" height="2" ><br>
                  <img src="images/tab-02-01.gif" width="10" height="25"></td>
                  <td bgcolor="black" valign=bottom height="1"><img src="images/blank.gif"
                  height="1"></td>
                  <td rowspan="2" valign="bottom" align="left" class=siteNav2T D>
                  <img src="images/tab-01-03.gif" width="10" height="2" ><br>
                  <img src="images/tab-02-03.gif" width="10" height="25" ></td>
                  </tr>
                  <tr>
                  <td class=siteNav2T D width = "100%" align="center" valign="middle"
                  nowrap>
                  <A
                  HREF="customkit items.asp?CartI d=ACCWARE-12317676VTLOH36 6&ic=BTOWKS02&t ag="[color=blue]
                  ><font face="Verdana, Arial" size="2"><B>Int el Pentium 4 &[/color]
                  Celeron</b></font></a></td>
                  </tr>
                  <!-- USE THIS CODE TO MAKE A BLANK TAB
                  <tr>
                  <td class=siteNav3T D height=2 align=left><img SRC="images/bdot.gif"
                  HEIGHT="2" width="3" BORDER="0"></td>
                  <td class=siteNav3T D colspan=2 height=2 align=right><im g
                  SRC="images/blank.gif" width=69 HEIGHT="2" BORDER="0"><img
                  SRC="images/bdot.gif" WIDTH="2" HEIGHT="2" BORDER="0"></td>
                  </tr>
                  -->
                  <tr>
                  <td bgcolor="black" ><img SRC="images/bdot.gif" WIDTH="10" HEIGHT="2"
                  BORDER="0"></td>
                  <td bgcolor="black" ><img SRC="images/bdot.gif" WIDTH="69" HEIGHT="2"
                  BORDER="0"></td>
                  <td bgcolor="black" ><img SRC="images/bdot.gif" WIDTH="10" HEIGHT="2"
                  BORDER="0"></td>
                  </tr>
                  </table>
                  </td>
                  <td valign=bottom>
                  <table BORDER= "0" CELLPADDING="0" CELLSPACING="0" WIDTH="80"
                  ID="Table1">
                  <tr>
                  <td align="right" valign="bottom" rowspan="2" class=siteNav2T D>
                  <img src="images/tab-01-01.gif" width="10" height="2" ><br>
                  <img src="images/tab-02-01.gif" width="10" height="25"></td>
                  <td bgcolor="black" valign=bottom height="1"><img src="images/blank.gif"
                  height="1"></td>
                  <td rowspan="2" valign="bottom" align="left" class=siteNav2T D>
                  <img src="images/tab-01-03.gif" width="10" height="2" ><br>
                  <img src="images/tab-02-03.gif" width="10" height="25" ></td>
                  </tr>
                  <tr>
                  <td class=siteNav2T D width = "100%" align="center" valign="middle"
                  nowrap>
                  <A
                  HREF="customkit items.asp?CartI d=ACCWARE-12317676VTLOH36 6&ic=BTOSHU02&t ag="[color=blue]
                  ><font face="Verdana, Arial" size="2"><B>Min i P4 System</b></font></a></td>[/color]
                  </tr>
                  <!-- USE THIS CODE TO MAKE A BLANK TAB
                  <tr>
                  <td class=siteNav3T D height=2 align=left><img SRC="images/bdot.gif"
                  HEIGHT="2" width="3" BORDER="0"></td>
                  <td class=siteNav3T D colspan=2 height=2 align=right><im g
                  SRC="images/blank.gif" width=69 HEIGHT="2" BORDER="0"><img
                  SRC="images/bdot.gif" WIDTH="2" HEIGHT="2" BORDER="0"></td>
                  </tr>
                  -->
                  <tr>
                  <td bgcolor="black" ><img SRC="images/bdot.gif" WIDTH="10" HEIGHT="2"
                  BORDER="0"></td>
                  <td bgcolor="black" ><img SRC="images/bdot.gif" WIDTH="69" HEIGHT="2"
                  BORDER="0"></td>
                  <td bgcolor="black" ><img SRC="images/bdot.gif" WIDTH="10" HEIGHT="2"
                  BORDER="0"></td>
                  </tr>
                  </table>
                  </td>
                  </tr>
                  </table>

                  </td>
                  </tr>
                  <tr>
                  <td valign=top width=80% height=100%>
                  <table border=0 cellpadding=0 cellspacing=0 height=100% ID="Table2">
                  <tr valign=top>
                  <td valign=top width=100% bgcolor=white >
                  <table cellpadding=0 cellspacing=0 border=0 height=100% bgcolor=white
                  ID="Table3">
                  <tr valign=top>
                  <td bgcolor=white width=100% height=100%>
                  <br>
                  <!-------MAIN BODY COMES HERE---------------------->
                  <table border="0" width = "95%" cellspacing="0" cellpadding="0" >
                  <tr>
                  <td height="20" class=siteNav1T D><font face="verdana, arial" size="2"
                  color="#ffffff" ><strong>CUSTOM IZE YOUR&nbsp; :
                  AMD ATHLON XP & DURON - DDR
                  <!-- Generated by Accware Online Build # ( Components Build # 5.1.0.460 ).
                  (C) 1999-2002 Icode, Inc. -->
                  </strong></font></td>
                  </tr>
                  <tr>
                  <td width= "500" height="20">&nb sp; </td>
                  </tr>

                  <tr>
                  <td width = "500" height="20"><fo nt face="Verdana" size="2"
                  color=black><st rong>Select options, update price and add to
                  your shopping cart below.</strong></font></td>
                  </tr>

                  <tr>
                  <td width= "500" height="20">&nb sp; </td>
                  </tr>
                  </table>
                  <table border= "0" width= "95%" cellspacing="0" cellpadding="0" >
                  <tr>
                  <td valign="top" align="left">
                  <font face="Verdana" size="2">Design a system based on the AMD Family of
                  processors, everything you need is at your fingertips! Our trained
                  professionals will assemble the system, saving you time and money! All of
                  our custom orders are carefully reviewed and checked for compatibility
                  before assembly for your convenience.
                  </font>

                  </td>
                  <td width="65" valign="top" align="center">

                  <a href=""
                  onClick="window .open('/mmgss/Images/BTOSHOT.JPG','_ kitimg','width= 520,height
                  =520,toolbar,sc rollbars');retu rn false;">
                  <img src="/mmgss/Images/BTOSHOT-100.JPG" width=100 height=100 border=0
                  alt="Kit Image"></a>

                  <a href="javascrip t:CheckConfig(' add');" class="msn">
                  <img src="images/add_to_cart.gif " border="0"></a>

                  </p>
                  </td>
                  </tr>
                  </table>
                  <form name="frmKitAmt ">
                  <input type="hidden" name="itemname" value="AMD ATHLON XP &amp; DURON - DDR
                  &lt;!-- Generated by Accware Online Build # ( Components Build #
                  5.1.0.460 ). (C) 1999-2002 Icode, Inc. --&gt;
                  ">
                  <input type="hidden" name="imglink" value="/mmgss/Images/BTOSHOT-50.JPG">
                  <input type="hidden" name="descripti on" value="Design a system based on the
                  AMD Family of processors, everything you need is at your fingertips! Our
                  trained professionals will assemble the system, saving you time and money!
                  All of our custom orders are carefully reviewed and checked for
                  compatibility before assembly for your convenience.
                  ">
                  <table border= "0" cellspacing="1" cellpadding="0" width="95%">

                  <tr>
                  <td class=siteNav1T D valign="middle" >
                  <table width="100%">
                  <tr>
                  <td colspan="3" align="center" valign="middle" >
                  <font face="Verdana" size="2" color="#ffffff" ><strong>Base
                  Price:</strong> </font>
                  </td>
                  <td>
                  <font face="Verdana" size="2"
                  color="#ffffff" ><strong>$&nbsp ;485.30</strong></font>
                  </td>
                  <td valign="middle" >
                  <font face="Verdana" size="2" color="#FFFFFF" ><strong>Your Price: $
                  </strong></font>
                  <input type="text" name="txtTotalK itValue" value="485.30" size="10"
                  onFocus="this.b lur();">
                  </td>
                  </tr>
                  <tr>
                  <td colspan="4" align="center" valign="middle" >
                  <font face="Verdana" size="2" color="#FFFFFF" ><strong>Markup :
                  </strong></font>
                  <input type="text" name="margin" value="0" size="10"
                  onblur="calc_to tal();">
                  </td>
                  <td valign="middle" >
                  <font face="Verdana" size="2" color="#FFFFFF" ><strong>End Price: $
                  </strong></font>
                  <input type="text" name="total" value="485.30" size="10">
                  </td>
                  </tr>
                  </table>
                  </td>
                  <td class=siteNav1T D valign="middle" align="center"c olspan="2" >
                  <font face="Verdana" size="1" color="#FFFFFF" ><b>Quantity :</b><br>
                  <input name="qty" type="text" size="4" maxlength="4" value="1"></font>
                  </td>
                  </tr>



                  <tr>
                  <td colspan="3" height="20"><fo nt face="Verdana" size="1">To take a
                  printable
                  version of this Kit <a href="javascrip t:printkit();"
                  class="msn"><st rong>Click here.</strong></a></font></td>
                  </tr>
                  <tr>
                  <td><font face="verdana" size=1><b>Item Name</b></td>

                  <td align="center"> <font face="verdana" size=1><b>Price </b></td>

                  <td align="center"> <font face="verdana" size=1><b>Qty</b></td>
                  </tr>
                  <!--
                  </table>-->
                  </form>

                  <form name="frmKitUpg rades">
                  <!--<table cellspacing="4" cellpadding="0" border="0">-->

                  <tr>
                  <td height=20 class=siteNav4T D width = "85%">
                  <font face="Verdana" size="1" color="#000000" ><strong>CASE S - ATX FORM
                  <!-- Generated by Accware Online Build # ( Components Build # 5.1.0.460 ).
                  (C) 1999-2002 Icode, Inc. -->
                  &nbsp;</strong></font>

                  <a href="javascrip t:item('1')" class=msn><font face="verdana"
                  size=1><b>Click for Item Details</b></font></a>

                  <input type="hidden" name="kitname1" value="CASES - ATX FORM
                  <!-- Generated by Accware Online Build # ( Components Build # 5.1.0.460 ).
                  (C) 1999-2002 Icode, Inc. -->
                  "></td>

                  <td class=siteNav4T D width = "5%" align = center><font face="Verdana"
                  size="1" color="#000000" ><b>&nbsp;</b>&nbsp;</font></td>

                  <td class=siteNav4T D width = "10%" align="center"> <font face="Verdana"
                  size="1" color="#000000" ><b>&nbsp;</b></font></td></tr>
                  <tr><td align = "left">

                  <select name="sel1" onChange="Calcu lateTotal()" class=CustomKit DropDown>

                  <option selected value="CASINW10 19#0#CASINW1019 #55.75#1">
                  INWIN P4 3.06 APP. MID TOWER F/USB 300WT
                  </option>

                  <option value="CASBCI10 22#-55.75#CASBCI102 2">
                  BCI SILVER MID TOWER 350 WATT MAKO SHARK : [- $69.69]
                  </option>

                  <option value="CASBCI22 50#-23.25#CASBCI225 0">
                  BCI MID TOWER BLUE FACE W\300W PIKE : [- $29.06]
                  </option>

                  <option value="CASBCI22 58#-27.75#CASBCI225 8">
                  BCI MID TOWER GRAY FACE W\300W SHARK : [- $34.69]
                  </option>

                  <option value="CASBCI22 60#-55.75#CASBCI226 0">
                  BCI MID TOWER WHITE\BLUE 300W SAILFISH : [- $69.69]
                  </option>

                  <option value="CASBCI22 66#-55.75#CASBCI226 6">
                  BCI BLACK MID TOWER 300W KILLER WHALE : [- $69.69]
                  </option>

                  <option value="CASBCI22 56#-23.25#CASBCI225 6">
                  BCI BLACK\SILVER MID TOWER W\300W TUNA : [- $29.06]
                  </option>

                  <option value="CASBCI22 79#-22.00#CASBCI227 9">
                  BCI BLACK\SILVER W\WINDOW 300W EEL : [- $27.50]
                  </option>

                  <option value="CASBCI22 77#-19.25#CASBCI227 7">
                  BCI M.TOWER SIDE LIGHTS WINDOW GRAYLING : [- $24.06]
                  </option>

                  <option value="CASBCI20 06#-17.00#CASBCI200 6">
                  BCI M-TOWER SILVER W/WINDOW 400W-ANCHOVI : [- $21.25]
                  </option>

                  <option value="CASAOP10 012#-17.00#CASAOP100 12">
                  AOPEN MID TOWER300WT AMD\PIII\P4 : [- $21.25]
                  </option>

                  <option value="CASBCI10 01#-10.00#CASBCI100 1">
                  BCI MID 300WT ATXP4/PIII/AMD APPROVED : [- $12.50]
                  </option>

                  <option value="CASSUP10 20#-12.25#CASSUP102 0">
                  BLACK SUPERCASE P4/PIII 300WT MIDTOWER : [- $15.31]
                  </option>

                  <option value="CASENL10 13#-55.75#CASENL101 3">
                  ENLIGHT P4/PIII MID TOWER CASE 300WATTX : [- $69.69]
                  </option>

                  <option value="CASANT10 13#43.25#CASANT 1013">
                  BLACK ANTEC FULL TOWER P4/P3 400WATT : [+ $54.06]
                  </option>

                  <option value="KISSEP2# 0.00#KISSEP2">
                  ------[ MICRO ATX CASES ]------
                  </option>

                  <option value="CASBCI10 12#-19.00#CASBCI101 2">
                  BCI BLACK/SILVER MICRO ATX TOWER 320WT : [- $23.75]
                  </option>

                  <option value="CASINW10 51#-18.00#CASINW105 1">
                  INWIN P4/PIII MICRO ATX DESKTOP 180 WATT : [- $22.50]
                  </option>

                  <option value="CASINW10 49#-13.00#CASINW104 9">
                  INWIN P4/AMD MICRO ATX TOWER 250WT F-USB : [- $16.25]
                  </option>

                  <option value="KISSEP#0 .00#KISSEP">
                  ------[ CASES W/O POWER SUPPLY ]------
                  </option>

                  <option value="CASANT10 53#2.00#CASANT1 053">
                  ANTEC FULL TOWER P4/AMD NO POWER SUPPLY : [+ $2.50]
                  </option>

                  <option value="CASTHM30 40#43.25#CASTHM 3040">
                  BLACK THERMALTAKE SKULL WITH WINDOW : [+ $54.06]
                  </option>

                  <option value="CASTHM30 30#49.25#CASTHM 3030">
                  THERMALTAKE LANFIRE CASE : [+ $61.56]
                  </option>

                  <option value="CASTHM30 10#73.25#CASTHM 3010">
                  BLACK THERMALTAKE XASER III W/WIN NO/PS : [+ $91.56]
                  </option>

                  <option value="CASTHM30 00#76.75#CASTHM 3000">
                  BLUE THERMALTAKE XASER III W/WIN NO/PS : [+ $95.94]
                  </option>

                  </select>


                  </td>

                  <td align="center">
                  <input type="text" name="price1" value="69.69" size="6" style="font-family:
                  Arial; font-size: 10; text-align: right; font-weight: bolder; border:
                  medium" readonly onfocus = "this.blur( )"></td>

                  <td nowrap align="center"> <font face="Verdana" size="1"
                  color="#000000" ><b>1</b></font></td></tr>

                  <tr>
                  <td height=20 class=siteNav4T D width = "85%">
                  <font face="Verdana" size="1" color="#000000" ><strong>POWE R SUPPLY
                  (OPTIONAL)
                  <!-- Generated by Accware Online Build # ( Components Build # 5.1.0.460 ).
                  (C) 1999-2002 Icode, Inc. -->
                  &nbsp;</strong></font>

                  <a href="javascrip t:item('2')" class=msn><font face="verdana"
                  size=1><b>Click for Item Details</b></font></a>

                  <input type="hidden" name="kitname2" value="POWER SUPPLY (OPTIONAL)
                  <!-- Generated by Accware Online Build # ( Components Build # 5.1.0.460 ).
                  (C) 1999-2002 Icode, Inc. -->
                  "></td>

                  <td class=siteNav4T D width = "5%" align = center><font face="Verdana"
                  size="1" color="#000000" ><b>&nbsp;</b>&nbsp;</font></td>

                  <td class=siteNav4T D width = "10%" align="center"> <font face="Verdana"
                  size="1" color="#000000" ><b>&nbsp;</b></font></td></tr>
                  <tr><td align = "left">

                  <select name="sel2" onChange="Calcu lateTotal()" class=CustomKit DropDown>

                  <option selected value="KISPWR#0 #KISPWR#0.00#1" >
                  FOR CASES WITHOUT A POWER SUPPLY
                  </option>

                  <option value="CASBCI90 10#18.50#CASBCI 9010">
                  BCI 350 WATT POWER SUPPLY PIII/P4/AMD : [+ $23.13]
                  </option>

                  <option value="PWRHER10 00#23.50#PWRHER 1000">
                  450 WATT DUAL FAN POWER SUPPLY P3\P4 : [+ $29.38]
                  </option>

                  <option value="PWRBCI10 09#29.75#PWRBCI 1009">
                  BCI 300 WATT P4/PIII P/S AMD APPROVED : [+ $37.19]
                  </option>

                  <option value="PWRPWL10 00#27.75#PWRPWL 1000">
                  500 WT POWERLINK AMD/P4/PIII DUAL FAN : [+ $34.69]
                  </option>

                  <option value="PWRTHM10 10#47.00#PWRTHM 1010">
                  THERMALTAKE 420 WATT P4/PIII/AMD APP. : [+ $58.75]
                  </option>

                  <option value="KISNONE# 0.00#KISNONE">
                  NONE
                  </option>

                  </select>


                  </td>

                  <td align="center">
                  <input type="text" name="price2" value="0.00" size="6" style="font-family:
                  Arial; font-size: 10; text-align: right; font-weight: bolder; border:
                  medium" readonly onfocus = "this.blur( )"></td>

                  <td nowrap align="center"> <font face="Verdana" size="1"
                  color="#000000" ><b>1</b></font></td></tr>

                  <tr>
                  <td height=20 class=siteNav4T D width = "85%">
                  <font face="Verdana" size="1" color="#000000" ><strong>CASE ACCESSORIES -
                  NEON LIGHT KITS
                  <!-- Generated by Accware Online Build # ( Components Build # 5.1.0.460 ).
                  (C) 1999-2002 Icode, Inc. -->
                  &nbsp;</strong></font>

                  <a href="javascrip t:item('3')" class=msn><font face="verdana"
                  size=1><b>Click for Item Details</b></font></a>

                  <input type="hidden" name="kitname3" value="CASE ACCESSORIES - NEON LIGHT
                  KITS
                  <!-- Generated by Accware Online Build # ( Components Build # 5.1.0.460 ).
                  (C) 1999-2002 Icode, Inc. -->
                  "></td>

                  <td class=siteNav4T D width = "5%" align = center><font face="Verdana"
                  size="1" color="#000000" ><b>&nbsp;</b>&nbsp;</font></td>

                  <td class=siteNav4T D width = "10%" align="center"> <font face="Verdana"
                  size="1" color="#000000" ><b>&nbsp;</b></font></td></tr>
                  <tr><td align = "left">

                  <select name="sel3" onChange="Calcu lateTotal()" class=CustomKit DropDown>

                  <option selected value="KISCMDLI T#0#KISCMDLIT#0 .00#1">
                  NEON LIGHT KITS
                  </option>

                  <option value="CMDCAB10 80#4.75#CMDCAB1 080">
                  80MM CASE FAN CRYSTAL CLEAR W/GREEN LED : [+ $5.94]
                  </option>

                  <option value="CMDCAB10 90#4.75#CMDCAB1 090">
                  80MM CASE FAN CRYSTAL CLEAR W/RED LED : [+ $5.94]
                  </option>

                  <option value="CMDCAB11 01#4.75#CMDCAB1 101">
                  80MM CASE FAN CRYSTAL CLEAR W/4 BLUE LED : [+ $5.94]
                  </option>

                  <option value="CMDCAB11 10#7.45#CMDCAB1 110">
                  80MM CASE FAN CRYSTAL CLEAR 4 COLOR LED : [+ $9.31]
                  </option>

                  <option value="KISNONE# 0.00#KISNONE">
                  NONE
                  </option>

                  </select>


                  </td>

                  <td align="center">
                  <input type="text" name="price3" value="0.00" size="6" style="font-family:
                  Arial; font-size: 10; text-align: right; font-weight: bolder; border:
                  medium" readonly onfocus = "this.blur( )"></td>

                  <td nowrap align="center"> <font face="Verdana" size="1"
                  color="#000000" ><b>1</b></font></td></tr>

                  <tr>
                  <td height=20 class=siteNav4T D width = "85%">
                  <font face="Verdana" size="1" color="#000000" ><strong>CASE ACCESSORIES -
                  CABLE SETS
                  <!-- Generated by Accware Online Build # ( Components Build # 5.1.0.460 ).
                  (C) 1999-2002 Icode, Inc. -->
                  &nbsp;</strong></font>

                  <a href="javascrip t:item('4')" class=msn><font face="verdana"
                  size=1><b>Click for Item Details</b></font></a>

                  <input type="hidden" name="kitname4" value="CASE ACCESSORIES - CABLE SETS
                  <!-- Generated by Accware Online Build # ( Components Build # 5.1.0.460 ).
                  (C) 1999-2002 Icode, Inc. -->
                  "></td>

                  <td class=siteNav4T D width = "5%" align = center><font face="Verdana"
                  size="1" color="#000000" ><b>&nbsp;</b>&nbsp;</font></td>

                  <td class=siteNav4T D width = "10%" align="center"> <font face="Verdana"
                  size="1" color="#000000" ><b>&nbsp;</b></font></td></tr>
                  <tr><td align = "left">

                  <select name="sel4" onChange="Calcu lateTotal()" class=CustomKit DropDown>

                  <option selected value="KISCMDCA B#0#KISCMDCAB#0 .00#1">
                  ROUNDED CABLE SETS
                  </option>

                  <option value="CMDCAB10 73#1.99#CMDCAB1 073">
                  18" YELLOW FLOPPY ROUNDED CABLE : [+ $2.49]
                  </option>

                  <option value="CMDCAB10 75#2.99#CMDCAB1 075">
                  18" BLUE FLOPPY ROUNDED CABLE : [+ $3.74]
                  </option>

                  <option value="CMDCAB10 76#2.99#CMDCAB1 076">
                  18" UV FLOPPY ROUNDED CABLE : [+ $3.74]
                  </option>

                  <option value="KISSEP#0 .00#KISSEP">
                  ------[ ROUNDED IDE CABLES ]------
                  </option>

                  <option value="CMDCAB10 69B#3.75#CMDCAB 1069B">
                  18" IDE ATA 133 BLUE ROUNDED CABLE : [+ $4.69]
                  </option>

                  <option value="CMDCAB10 67#3.99#CMDCAB1 067">
                  18" IDE ATA 133 UV ROUNDED CABLE : [+ $4.99]
                  </option>

                  <option value="CMDCAB10 68#3.99#CMDCAB1 068">
                  24" IDE ATA 133 YELLOW ROUNDED CABLE : [+ $4.99]
                  </option>

                  <option value="KISNONE# 0.00#KISNONE">
                  NONE
                  </option>

                  </select>


                  </td>

                  <td align="center">
                  <input type="text" name="price4" value="0.00" size="6" style="font-family:
                  Arial; font-size: 10; text-align: right; font-weight: bolder; border:
                  medium" readonly onfocus = "this.blur( )"></td>

                  <td nowrap align="center"> <font face="Verdana" size="1"
                  color="#000000" ><b>1</b></font></td></tr>

                  <tr>
                  <td height=20 class=siteNav4T D width = "85%">
                  <font face="Verdana" size="1" color="#000000" ><strong>CASE ACCESSORIES -
                  CABLE SETS
                  <!-- Generated by Accware Online Build # ( Components Build # 5.1.0.460 ).
                  (C) 1999-2002 Icode, Inc. -->
                  &nbsp;</strong></font>

                  <a href="javascrip t:item('5')" class=msn><font face="verdana"
                  size=1><b>Click for Item Details</b></font></a>

                  <input type="hidden" name="kitname5" value="CASE ACCESSORIES - CABLE SETS
                  <!-- Generated by Accware Online Build # ( Components Build # 5.1.0.460 ).
                  (C) 1999-2002 Icode, Inc. -->
                  "></td>

                  <td class=siteNav4T D width = "5%" align = center><font face="Verdana"
                  size="1" color="#000000" ><b>&nbsp;</b>&nbsp;</font></td>

                  <td class=siteNav4T D width = "10%" align="center"> <font face="Verdana"
                  size="1" color="#000000" ><b>&nbsp;</b></font></td></tr>
                  <tr><td align = "left">

                  <select name="sel5" onChange="Calcu lateTotal()" class=CustomKit DropDown>

                  <option selected value="KISCMDCA B#0#KISCMDCAB#0 .00#1">
                  ROUNDED CABLE SETS
                  </option>

                  <option value="CMDCAB10 73#1.99#CMDCAB1 073">
                  18" YELLOW FLOPPY ROUNDED CABLE : [+ $2.49]
                  </option>

                  <option value="CMDCAB10 75#2.99#CMDCAB1 075">
                  18" BLUE FLOPPY ROUNDED CABLE : [+ $3.74]
                  </option>

                  <option value="CMDCAB10 76#2.99#CMDCAB1 076">
                  18" UV FLOPPY ROUNDED CABLE : [+ $3.74]
                  </option>

                  <option value="KISSEP#0 .00#KISSEP">
                  ------[ ROUNDED IDE CABLES ]------
                  </option>

                  <option value="CMDCAB10 69B#3.75#CMDCAB 1069B">
                  18" IDE ATA 133 BLUE ROUNDED CABLE : [+ $4.69]
                  </option>

                  <option value="CMDCAB10 67#3.99#CMDCAB1 067">
                  18" IDE ATA 133 UV ROUNDED CABLE : [+ $4.99]
                  </option>

                  <option value="CMDCAB10 68#3.99#CMDCAB1 068">
                  24" IDE ATA 133 YELLOW ROUNDED CABLE : [+ $4.99]
                  </option>

                  <option value="KISNONE# 0.00#KISNONE">
                  NONE
                  </option>

                  </select>


                  </td>

                  <td align="center">
                  <input type="text" name="price5" value="0.00" size="6" style="font-family:
                  Arial; font-size: 10; text-align: right; font-weight: bolder; border:
                  medium" readonly onfocus = "this.blur( )"></td>

                  <td nowrap align="center"> <font face="Verdana" size="1"
                  color="#000000" ><b>1</b></font></td></tr>

                  <tr>
                  <td height=20 class=siteNav4T D width = "85%">
                  <font face="Verdana" size="1" color="#000000" ><strong>MOTHER BOARDS -
                  SOCKET A
                  <!-- Generated by Accware Online Build # ( Components Build # 5.1.0.460 ).
                  (C) 1999-2002 Icode, Inc. -->
                  &nbsp;</strong></font>

                  <a href="javascrip t:item('6')" class=msn><font face="verdana"
                  size=1><b>Click for Item Details</b></font></a>

                  <input type="hidden" name="kitname6" value="MOTHERBO ARDS - SOCKET A
                  <!-- Generated by Accware Online Build # ( Components Build # 5.1.0.460 ).
                  (C) 1999-2002 Icode, Inc. -->
                  "></td>

                  <td class=siteNav4T D width = "5%" align = center><font face="Verdana"
                  size="1" color="#000000" ><b>&nbsp;</b>&nbsp;</font></td>

                  <td class=siteNav4T D width = "10%" align="center"> <font face="Verdana"
                  size="1" color="#000000" ><b>&nbsp;</b></font></td></tr>
                  <tr><td align = "left">

                  <select name="sel6" onChange="Calcu lateTotal()" class=CustomKit DropDown>

                  <option selected value="MOTGIG35 35#0#MOTGIG3535 #62.75#1">
                  * GBT SKTA,KT400,5P 8X AGP,3 DDR,S/BULK
                  </option>

                  <option value="MOTGIG35 25#0.00#MOTGIG3 525">
                  GBT SKTA KM400,3000+/3P/2DDR/S/V/L
                  </option>

                  <option value="MOTGIG35 27#2.00#MOTGIG3 527">
                  GBT SKTA 400FSB/3200+/5P, 3DDR/S/L : [+ $2.50]
                  </option>

                  <option value="MOTGIG35 23#14.00#MOTGIG 3523">
                  GBT SKTA NF2/3200+400/5P/4DDRDUCH/S/L : [+ $17.50]
                  </option>

                  <option value="MOTGIG35 20#50.00#MOTGIG 3520">
                  GBT SKTA 3200/400FSB/5P/4D/S/GL/SAR/RD : [+ $62.50]
                  </option>

                  <option value="KISSEP#0 .00#KISSEP">
                  *** AOPEN MOTHERBOARDS ***
                  </option>

                  <option value="MOTAOP10 63#-8.00#MOTAOP1063 ">
                  AOPEN SKTA KM266 28+,3P,2DDR/S/V/L/MATX : [- $10.00]
                  </option>

                  <option value="MOTAOP10 621#2.00#MOTAOP 10621">
                  AOPEN SKTA KT400A 333FSB 6P/3DDR/S/L : [+ $2.50]
                  </option>

                  <option value="MOTAOP10 622#3.00#MOTAOP 10622">
                  AOPEN SKA KM400/3K+/333/2DDR/3P/SVL/SA/U : [+ $3.75]
                  </option>

                  <option value="MOTAOP10 65#13.00#MOTAOP 1065">
                  AOPEN SKTA NFORC2,400-3000+,3D/5P/S/L : [+ $16.25]
                  </option>

                  <option value="KISSEP2# 0.00#KISSEP2">
                  *** MSI MOTHERBOARDS ***
                  </option>

                  <option value="MOTMIC13 07#-23.75#MOTMIC130 7">
                  MSI SKTA 266FSB2600+ SIS745/3DDR/5P/S : [- $29.69]
                  </option>

                  <option value="MOTMIC13 05#-5.00#MOTMIC1305 ">
                  MSI SKTA 266FSB 3P,2SD/2DDR,AGP,S/L/V : [- $6.25]
                  </option>

                  <option value="MOTMIC13 23#-1.00#MOTMIC1323 ">
                  MSI SKTA KT4VL 6P/AGP,CNR/3DDR/S/L : [- $1.25]
                  </option>

                  <option value="MOTMIC13 15#12.00#MOTMIC 1315">
                  MSI SKTA 3200/NF/400FSB/5P/3DDR/S/L : [+ $15.00]
                  </option>

                  </select>


                  </td>

                  <td align="center">
                  <input type="text" name="price6" value="78.44" size="6" style="font-family:
                  Arial; font-size: 10; text-align: right; font-weight: bolder; border:
                  medium" readonly onfocus = "this.blur( )"></td>

                  <td nowrap align="center"> <font face="Verdana" size="1"
                  color="#000000" ><b>1</b></font></td></tr>

                  <tr>
                  <td height=20 class=siteNav4T D width = "85%">
                  <font face="Verdana" size="1" color="#000000" ><strong>CPUS - AMD ATHLON XP
                  <!-- Generated by Accware Online Build # ( Components Build # 5.1.0.460 ).
                  (C) 1999-2002 Icode, Inc. -->
                  &nbsp;</strong></font>

                  <a href="javascrip t:item('7')" class=msn><font face="verdana"
                  size=1><b>Click for Item Details</b></font></a>

                  <input type="hidden" name="kitname7" value="CPUS - AMD ATHLON XP
                  <!-- Generated by Accware Online Build # ( Components Build # 5.1.0.460 ).
                  (C) 1999-2002 Icode, Inc. -->
                  "></td>

                  <td class=siteNav4T D width = "5%" align = center><font face="Verdana"
                  size="1" color="#000000" ><b>&nbsp;</b>&nbsp;</font></td>

                  <td class=siteNav4T D width = "10%" align="center"> <font face="Verdana"
                  size="1" color="#000000" ><b>&nbsp;</b></font></td></tr>
                  <tr><td align = "left">

                  <select name="sel7" onChange="Calcu lateTotal()" class=CustomKit DropDown>

                  <option selected value="CPUAMD90 30#0#CPUAMD9030 #0.00#1">
                  * ATHLON XP 2100 RETAIL 256 CACHE
                  </option>

                  <option value="CPUAMD90 38#77.50#CPUAMD 9038">
                  ATHLON XP 2200 RETAIL 256 CACHE 266MHZ : [+ $96.88]
                  </option>

                  <option value="CPUAMD90 41#86.50#CPUAMD 9041">
                  ATHLON XP 2400 RETAIL 256 CACHE 266MHZ : [+ $108.13]
                  </option>

                  <option value="CPUAMD90 412#96.25#CPUAM D90412">
                  ATHLON XP 2500 RETAIL 512 CACHE 333MHZ : [+ $120.31]
                  </option>

                  <option value="CPUAMD90 44#110.50#CPUAM D9044">
                  ATHLON XP 2600 RETAIL 256 CACHE 333MHZ : [+ $138.13]
                  </option>

                  <option value="CPUAMD90 46#126.75#CPUAM D9046">
                  ATHLON XP 2700 RETAIL 256 CACHE 333MHZ : [+ $158.44]
                  </option>

                  <option value="CPUAMD90 48#150.00#CPUAM D9048">
                  ATHLON XP 2800 RETAIL 512 CACHE 333MHZ : [+ $187.50]
                  </option>

                  <option value="CPUAMD90 50#213.50#CPUAM D9050">
                  ATHLON XP 3000 RETAIL 512 CACHE 333MHZ : [+ $266.88]
                  </option>

                  <option value="CPUAMD90 58#335.50#CPUAM D9058">
                  ATHLON XP 3200 RETAIL 512 CACHE 400 MHZ : [+ $419.38]
                  </option>

                  </select>


                  </td>

                  <td align="center">
                  <input type="text" name="price7" value="0.00" size="6" style="font-family:
                  Arial; font-size: 10; text-align: right; font-weight: bolder; border:
                  medium" readonly onfocus = "this.blur( )"></td>

                  <td nowrap align="center"> <font face="Verdana" size="1"
                  color="#000000" ><b>1</b></font></td></tr>

                  <tr>
                  <td height=20 class=siteNav4T D width = "85%">
                  <font face="Verdana" size="1" color="#000000" ><strong>MEMO RY - DDR
                  <!-- Generated by Accware Online Build # ( Components Build # 5.1.0.460 ).
                  (C) 1999-2002 Icode, Inc. -->
                  &nbsp;</strong></font>

                  <a href="javascrip t:item('8')" class=msn><font face="verdana"
                  size=1><b>Click for Item Details</b></font></a>

                  <input type="hidden" name="kitname8" value="MEMORY - DDR
                  <!-- Generated by Accware Online Build # ( Components Build # 5.1.0.460 ).
                  (C) 1999-2002 Icode, Inc. -->
                  "></td>

                  <td class=siteNav4T D width = "5%" align = center><font face="Verdana"
                  size="1" color="#000000" ><b>&nbsp;</b>&nbsp;</font></td>

                  <td class=siteNav4T D width = "10%" align="center"> <font face="Verdana"
                  size="1" color="#000000" ><b>&nbsp;</b></font></td></tr>
                  <tr><td align = "left">

                  <select name="sel8" onChange="Calcu lateTotal()" class=CustomKit DropDown>

                  <option selected value="MEMDDR10 60#0#MEMDDR1060 #20.50#1">
                  128 MB DDR PC 2100 266 MHZ MAJOR BRAND
                  </option>

                  <option value="MEMDDR10 70#16.00#MEMDDR 1070">
                  256 MB DDR PC 2100 266 MHZ MAJOR BRAND : [+ $20.00]
                  </option>

                  <option value="MEMDDR10 72#49.25#MEMDDR 1072">
                  512 MB DDR PC 2100 266MHZ : [+ $61.56]
                  </option>

                  <option value="MEMDDR10 73#196.50#MEMDD R1073">
                  1 GIG DDR PC 2100 266 HMZ : [+ $245.63]
                  </option>

                  <option value="KISSEP#0 .00#KISSEP">
                  *** 333MHZ DDR MEMORY ***
                  </option>

                  <option value="MEMDDR10 81#2.25#MEMDDR1 081">
                  128 MB DDR PC 2700 333 MHZ MAJOR BRAND : [+ $2.81]
                  </option>

                  <option value="MEMDDR10 83#17.00#MEMDDR 1083">
                  256 MB DDR PC 2700 333MHZ : [+ $21.25]
                  </option>

                  <option value="MEMDDR10 85#49.50#MEMDDR 1085">
                  512 MB DDR PC 2700 333 MHZ : [+ $61.88]
                  </option>

                  <option value="MEMDDR10 86#218.50#MEMDD R1086">
                  1 GIG DDR PC 2700 333 MHZ : [+ $273.13]
                  </option>

                  <option value="KISSEP2# 0.00#KISSEP2">
                  *** 400MHZ DDR MEMORY ***
                  </option>

                  <option value="MEMDDR10 90#18.25#MEMDDR 1090">
                  256 MB DDR PC 3200 400 MHZ : [+ $22.81]
                  </option>

                  <option value="MEMDDR10 92#50.50#MEMDDR 1092">
                  512 MB DDR PC 3200 400 MHZ : [+ $63.13]
                  </option>

                  </select>


                  </td>

                  <td align="center">
                  <input type="text" name="price8" value="25.63" size="6" style="font-family:
                  Arial; font-size: 10; text-align: right; font-weight: bolder; border:
                  medium" readonly onfocus = "this.blur( )"></td>

                  <td nowrap align="center"> <font face="Verdana" size="1"
                  color="#000000" ><b>1</b></font></td></tr>

                  <tr>
                  <td height=20 class=siteNav4T D width = "85%">
                  <font face="Verdana" size="1" color="#000000" ><strong>NEED ADDITIONAL
                  MEMORY?
                  <!-- Generated by Accware Online Build # ( Components Build # 5.1.0.460 ).
                  (C) 1999-2002 Icode, Inc. -->
                  &nbsp;</strong></font>

                  <a href="javascrip t:item('9')" class=msn><font face="verdana"
                  size=1><b>Click for Item Details</b></font></a>

                  <input type="hidden" name="kitname9" value="NEED ADDITIONAL MEMORY?
                  <!-- Generated by Accware Online Build # ( Components Build # 5.1.0.460 ).
                  (C) 1999-2002 Icode, Inc. -->
                  "></td>

                  <td class=siteNav4T D width = "5%" align = center><font face="Verdana"
                  size="1" color="#000000" ><b>&nbsp;</b>&nbsp;</font></td>

                  <td class=siteNav4T D width = "10%" align="center"> <font face="Verdana"
                  size="1" color="#000000" ><b>&nbsp;</b></font></td></tr>
                  <tr><td align = "left">

                  <select name="sel9" onChange="Calcu lateTotal()" class=CustomKit DropDown>

                  <option selected value="KISALLME MDDR#0#KISALLME MDDR#0.00#1">
                  Memory speed should match FSB of CPU!
                  </option>

                  <option value="MEMDDR10 60#20.50#MEMDDR 1060">
                  128 MB DDR PC 2100 266 MHZ MAJOR BRAND : [+ $25.63]
                  </option>

                  <option value="MEMDDR10 70#37.00#MEMDDR 1070">
                  256 MB DDR PC 2100 266 MHZ MAJOR BRAND : [+ $46.25]
                  </option>

                  <option value="MEMDDR10 72#69.75#MEMDDR 1072">
                  512 MB DDR PC 2100 266MHZ MAJOR BRAND : [+ $87.19]
                  </option>

                  <option value="MEMDDR10 73#217.00#MEMDD R1073">
                  1 GIG DDR PC 2100 266 HMZ MAJOR BRAND : [+ $271.25]
                  </option>

                  <option value="KISSEP#0 .00#KISSEP">
                  *** 333MHZ DDR MEMORY ***
                  </option>

                  <option value="MEMDDR10 83#37.50#MEMDDR 1083">
                  256 MB DDR PC 2700 333MHZ MAJOR BRAND : [+ $46.88]
                  </option>

                  <option value="MEMDDR10 85#71.50#MEMDDR 1085">
                  512 MB DDR PC 2700 333 MHZ MAJOR BRAND : [+ $89.38]
                  </option>

                  <option value="MEMDDR10 86#239.00#MEMDD R1086">
                  1 GIG DDR PC 2700 333 MHZ MAJOR BRAND : [+ $298.75]
                  </option>

                  <option value="KISSEP2# 0.00#KISSEP2">
                  *** 400MHZ DDR MEMORY ***
                  </option>

                  <option value="MEMDDR10 90#38.75#MEMDDR 1090">
                  256 MB DDR PC 3200 400 MHZ MAJOR BRAND : [+ $48.44]
                  </option>

                  <option value="MEMDDR10 92#71.75#MEMDDR 1092">
                  512 MB DDR PC 3200 400 MHZ CAS3 MAJOR : [+ $89.69]
                  </option>

                  <option value="KISNONE# 0.00#KISNONE">
                  NONE
                  </option>

                  </select>


                  </td>

                  <td align="center">
                  <input type="text" name="price9" value="0.00" size="6" style="font-family:
                  Arial; font-size: 10; text-align: right; font-weight: bolder; border:
                  medium" readonly onfocus = "this.blur( )"></td>

                  <td nowrap align="center"> <font face="Verdana" size="1"
                  color="#000000" ><b>1</b></font></td></tr>

                  <tr>
                  <td height=20 class=siteNav4T D width = "85%">
                  <font face="Verdana" size="1" color="#000000" ><strong>NEED ADDITIONAL
                  MEMORY?
                  <!-- Generated by Accware Online Build # ( Components Build # 5.1.0.460 ).
                  (C) 1999-2002 Icode, Inc. -->
                  &nbsp;</strong></font>

                  <a href="javascrip t:item('10')" class=msn><font face="verdana"
                  size=1><b>Click for Item Details</b></font></a>

                  <input type="hidden" name="kitname10 " value="NEED ADDITIONAL MEMORY?
                  <!-- Generated by Accware Online Build # ( Components Build # 5.1.0.460 ).
                  (C) 1999-2002 Icode, Inc. -->
                  "></td>

                  <td class=siteNav4T D width = "5%" align = center><font face="Verdana"
                  size="1" color="#000000" ><b>&nbsp;</b>&nbsp;</font></td>

                  <td class=siteNav4T D width = "10%" align="center"> <font face="Verdana"
                  size="1" color="#000000" ><b>&nbsp;</b></font></td></tr>
                  <tr><td align = "left">

                  <select name="sel10" onChange="Calcu lateTotal()"
                  class=CustomKit DropDown>

                  <option selected value="KISALLME MDDR#0#KISALLME MDDR#0.00#1">
                  Memory speed should match FSB of CPU!
                  </option>

                  <option value="MEMDDR10 60#20.50#MEMDDR 1060">
                  128 MB DDR PC 2100 266 MHZ MAJOR BRAND : [+ $25.63]
                  </option>

                  <option value="MEMDDR10 70#37.00#MEMDDR 1070">
                  256 MB DDR PC 2100 266 MHZ MAJOR BRAND : [+ $46.25]
                  </option>

                  <option value="MEMDDR10 72#69.75#MEMDDR 1072">
                  512 MB DDR PC 2100 266MHZ MAJOR BRAND : [+ $87.19]
                  </option>

                  <option value="MEMDDR10 73#217.00#MEMDD R1073">
                  1 GIG DDR PC 2100 266 HMZ MAJOR BRAND : [+ $271.25]
                  </option>

                  <option value="KISSEP#0 .00#KISSEP">
                  *** 333MHZ DDR MEMORY ***
                  </option>

                  <option value="MEMDDR10 83#37.50#MEMDDR 1083">
                  256 MB DDR PC 2700 333MHZ MAJOR BRAND : [+ $46.88]
                  </option>

                  <option value="MEMDDR10 85#71.50#MEMDDR 1085">
                  512 MB DDR PC 2700 333 MHZ MAJOR BRAND : [+ $89.38]
                  </option>

                  <option value="MEMDDR10 86#239.00#MEMDD R1086">
                  1 GIG DDR PC 2700 333 MHZ MAJOR BRAND : [+ $298.75]
                  </option>

                  <option value="KISSEP2# 0.00#KISSEP2">
                  *** 400MHZ DDR MEMORY ***
                  </option>

                  <option value="MEMDDR10 90#38.75#MEMDDR 1090">
                  256 MB DDR PC 3200 400 MHZ MAJOR BRAND : [+ $48.44]
                  </option>

                  <option value="MEMDDR10 92#71.75#MEMDDR 1092">
                  512 MB DDR PC 3200 400 MHZ CAS3 MAJOR : [+ $89.69]
                  </option>

                  <option value="KISNONE# 0.00#KISNONE">
                  NONE
                  </option>

                  </select>


                  </td>

                  <td align="center">
                  <input type="text" name="price10" value="0.00" size="6" style="font-family:
                  Arial; font-size: 10; text-align: right; font-weight: bolder; border:
                  medium" readonly onfocus = "this.blur( )"></td>

                  <td nowrap align="center"> <font face="Verdana" size="1"
                  color="#000000" ><b>1</b></font></td></tr>

                  <tr>
                  <td height=20 class=siteNav4T D width = "85%">
                  <font face="Verdana" size="1" color="#000000" ><strong>SELE CT YOUR AGP
                  VIDEO CARD
                  <!-- Generated by Accware Online Build # ( Components Build # 5.1.0.460 ).
                  (C) 1999-2002 Icode, Inc. -->
                  &nbsp;</strong></font>

                  <a href="javascrip t:item('11')" class=msn><font face="verdana"
                  size=1><b>Click for Item Details</b></font></a>

                  <input type="hidden" name="kitname11 " value="SELECT YOUR AGP VIDEO CARD
                  <!-- Generated by Accware Online Build # ( Components Build # 5.1.0.460 ).
                  (C) 1999-2002 Icode, Inc. -->
                  "></td>

                  <td class=siteNav4T D width = "5%" align = center><font face="Verdana"
                  size="1" color="#000000" ><b>&nbsp;</b>&nbsp;</font></td>

                  <td class=siteNav4T D width = "10%" align="center"> <font face="Verdana"
                  size="1" color="#000000" ><b>&nbsp;</b></font></td></tr>
                  <tr><td align = "left">

                  <select name="sel11" onChange="Calcu lateTotal()"
                  class=CustomKit DropDown>

                  <option selected value="KISVIDAG P#0#KISVIDAGP#0 .00#1">
                  Choose a video card
                  </option>

                  <option value="VIDAOP10 22#43.75#VIDAOP 1022">
                  AOPEN MX 440 V64 8X 64DDR/SVID/TVO/LPB : [+ $54.69]
                  </option>

                  <option value="VIDAOP10 36#69.00#VIDAOP 1036">
                  AOPEN FX5200-DV128/128DDR/SVID/DVI : [+ $86.25]
                  </option>

                  <option value="KISSEP#0 .00#KISSEP">
                  ----------------------------------------
                  </option>

                  <option value="VIDCON00 50#28.75#VIDCON 0050">
                  CONNECT3D RADEON 7000 32M SDR TVO : [+ $35.94]
                  </option>

                  <option value="VIDCON00 55#32.75#VIDCON 0055">
                  CONNECT3D RADEON 7000 32M DDR TVO DVI : [+ $40.94]
                  </option>

                  <option value="VIDCON00 70#50.75#VIDCON 0070">
                  CONNECT3D RADEON 9200SE 64M DDR TVO : [+ $63.44]
                  </option>

                  <option value="VIDCON00 80#75.75#VIDCON 0080">
                  CONNECT3D RADEON 9200 128M DDR DVI TVO : [+ $94.69]
                  </option>

                  <option value="VIDCON00 90#92.75#VIDCON 0090">
                  CONNECT3D RADEON 9200 256M DDR DVI TVO : [+ $115.94]
                  </option>

                  <option value="KISSEP4# 0.00#KISSEP4">
                  ----------------------------------------
                  </option>

                  <option value="VIDEVG10 110#28.99#VIDEV G10110">
                  EVGA GEFORCE2 MX-400 32MB DDR 4X AGP : [+ $36.24]
                  </option>

                  <option value="VIDEVG10 112#37.75#VIDEV G10112">
                  EVGA GEFORCE 2 MX-400 64MB DDR AGP 4X : [+ $47.19]
                  </option>

                  <option value="VIDEVG10 21#45.75#VIDEVG 1021">
                  EVGA GEFORCE 4 MX440 64MB DDR AGP8XSVID : [+ $57.19]
                  </option>

                  <option value="VIDEVG10 785#69.75#VIDEV G10785">
                  EVGA GEFORCE FX5200 128DDR/TVO/LIGHT : [+ $87.19]
                  </option>

                  <option value="KISSEP2# 0.00#KISSEP2">
                  ----------------------------------------
                  </option>

                  <option value="VIDMSI10 601#42.75#VIDMS I10601">
                  MSI GEFORCE 4 MX 440 64DDR TVO : [+ $53.44]
                  </option>

                  <option value="VIDMSI10 914#68.75#VIDMS I10914">
                  MSI GEFORCE FX 5200 TD128 DVI/TVO : [+ $85.94]
                  </option>

                  <option value="VIDMSI10 941#169.75#VIDM SI10941">
                  MSI GEFORCE FX 5600 256DR/TVO/SV/DVI : [+ $212.19]
                  </option>

                  <option value="VIDMSI10 950#177.75#VIDM SI10950">
                  MSI GEFORCE FX5700 128DDR/TVO/DVI : [+ $222.19]
                  </option>

                  <option value="KISSEP3# 0.00#KISSEP3">
                  ----------------------------------------
                  </option>

                  <option value="VIDLEA10 50#15.50#VIDLEA 1050">
                  LEADTEK 16M SD AGP VANTA VIDEO OEM BULK : [+ $19.38]
                  </option>

                  <option value="VIDJAT10 30#69.75#VIDJAT 1030">
                  JATON GEFORCE 4 MX440 64MB TWIN : [+ $87.19]
                  </option>

                  </select>


                  </td>

                  <td align="center">
                  <input type="text" name="price11" value="0.00" size="6" style="font-family:
                  Arial; font-size: 10; text-align: right; font-weight: bolder; border:
                  medium" readonly onfocus = "this.blur( )"></td>

                  <td nowrap align="center"> <font face="Verdana" size="1"
                  color="#000000" ><b>1</b></font></td></tr>

                  <tr>
                  <td height=20 class=siteNav4T D width = "85%">
                  <font face="Verdana" size="1" color="#000000" ><strong>SOUN D CARDS
                  <!-- Generated by Accware Online Build # ( Components Build # 5.1.0.460 ).
                  (C) 1999-2002 Icode, Inc. -->
                  &nbsp;</strong></font>

                  <a href="javascrip t:item('12')" class=msn><font face="verdana"
                  size=1><b>Click for Item Details</b></font></a>

                  <input type="hidden" name="kitname12 " value="SOUND CARDS
                  <!-- Generated by Accware Online Build # ( Components Build # 5.1.0.460 ).
                  (C) 1999-2002 Icode, Inc. -->
                  "></td>

                  <td class=siteNav4T D width = "5%" align = center><font face="Verdana"
                  size="1" color="#000000" ><b>&nbsp;</b>&nbsp;</font></td>

                  <td class=siteNav4T D width = "10%" align="center"> <font face="Verdana"
                  size="1" color="#000000" ><b>&nbsp;</b></font></td></tr>
                  <tr><td align = "left">

                  <select name="sel12" onChange="Calcu lateTotal()"
                  class=CustomKit DropDown>

                  <option selected value="SNDCRE10 01#0#SNDCRE1001 #16.99#1">
                  CREATIVE LAB SB16PCI 128BIT MIDI/OEM
                  </option>

                  <option value="KISNONE#-16.99#KISNONE">
                  NONE : [- $21.24]
                  </option>

                  </select>


                  </td>

                  <td align="center">
                  <input type="text" name="price12" value="21.24" size="6"
                  style="font-family: Arial; font-size: 10; text-align: right; font-weight:
                  bolder; border: medium" readonly onfocus = "this.blur( )"></td>

                  <td nowrap align="center"> <font face="Verdana" size="1"
                  color="#000000" ><b>1</b></font></td></tr>

                  <tr>
                  <td height=20 class=siteNav4T D width = "85%">
                  <font face="Verdana" size="1" color="#000000" ><strong>PRIMAR Y HARD DRIVE
                  <!-- Generated by Accware Online Build # ( Components Build # 5.1.0.460 ).
                  (C) 1999-2002 Icode, Inc. -->
                  &nbsp;</strong></font>

                  <a href="javascrip t:item('13')" class=msn><font face="verdana"
                  size=1><b>Click for Item Details</b></font></a>

                  <input type="hidden" name="kitname13 " value="PRIMARY HARD DRIVE
                  <!-- Generated by Accware Online Build # ( Components Build # 5.1.0.460 ).
                  (C) 1999-2002 Icode, Inc. -->
                  "></td>

                  <td class=siteNav4T D width = "5%" align = center><font face="Verdana"
                  size="1" color="#000000" ><b>&nbsp;</b>&nbsp;</font></td>

                  <td class=siteNav4T D width = "10%" align="center"> <font face="Verdana"
                  size="1" color="#000000" ><b>&nbsp;</b></font></td></tr>
                  <tr><td align = "left">

                  <select name="sel13" onChange="Calcu lateTotal()"
                  class=CustomKit DropDown>

                  <option selected value="KISHDD1# 0#KISHDD1#0.00# 1">
                  Master Drive
                  </option>

                  <option value="HDDWDD72 06#57.75#HDDWDD 7206">
                  40.0 WD IDE 7200 RPM ATA/100 2MB : [+ $72.19]
                  </option>

                  <option value="HDDWDD72 060#64.50#HDDWD D72060">
                  40.0 WD IDE 7200 RPM ATA/100 8MB : [+ $80.63]
                  </option>

                  <option value="HDDWDD72 55#69.50#HDDWDD 7255">
                  80.1 WD IDE 7200 RPM ATA/100 : [+ $86.88]
                  </option>

                  <option value="HDDWDD72 60#77.00#HDDWDD 7260">
                  80.1 WD IDE 7200 RPM ATA 100/ 8MB : [+ $96.25]
                  </option>

                  <option value="HDDWDD72 85#99.75#HDDWDD 7285">
                  120 WD IDE 7200 RPM ATA/100/8 MB : [+ $124.69]
                  </option>

                  <option value="HDDWDD72 96#164.75#HDDWD D7296">
                  200 WD IDE 7200 RPM ATA/100 8MB : [+ $205.94]
                  </option>

                  <option value="KISSEP#0 .00#KISSEP">
                  ----------------------------------------
                  </option>

                  <option value="HDDMXT70 34#58.50#HDDMXT 7034">
                  40.0 MAXTOR IDE 7200 RPM ATA/133 : [+ $73.13]
                  </option>

                  <option value="HDDMXT70 43#72.50#HDDMXT 7043">
                  80.0 MAXTOR IDE 7200 RPM ATA/133 : [+ $90.63]
                  </option>

                  <option value="KISSEP2# 0.00#KISSEP2">
                  ----------------------------------------
                  </option>

                  <option value="HDDMXT80 28#84.75#HDDMXT 8028">
                  MAXTOR 80 GIG 7200 RPM SERIAL ATA : [+ $105.94]
                  </option>

                  <option value="HDDMXT80 29#114.00#HDDMX T8029">
                  MAXTOR 120 GIG 7200 RPM SERIAL ATA : [+ $142.50]
                  </option>

                  <option value="HDDWDD73 60#113.50#HDDWD D7360">
                  120GB WD SE SATA 7200RPM 8MB CACHE : [+ $141.88]
                  </option>

                  <option value="KISSEP3# 0.00#KISSEP3">
                  ----------------------------------------
                  </option>

                  <option value="HDDIBM10 84#59.75#HDDIBM 1084">
                  IBM/HITACHI 40GIG 7200 RPM ATA 100 2MB : [+ $74.69]
                  </option>

                  <option value="HDDIBM10 98#68.50#HDDIBM 1098">
                  IBM/HITACHI 80 GIG 7200 RPM ATA 100 2MB : [+ $85.63]
                  </option>

                  </select>


                  </td>

                  <td align="center">
                  <input type="text" name="price13" value="0.00" size="6" style="font-family:
                  Arial; font-size: 10; text-align: right; font-weight: bolder; border:
                  medium" readonly onfocus = "this.blur( )"></td>

                  <td nowrap align="center"> <font face="Verdana" size="1"
                  color="#000000" ><b>1</b></font></td></tr>

                  <tr>
                  <td height=20 class=siteNav4T D width = "85%">
                  <font face="Verdana" size="1" color="#000000" ><strong>SECOND ARY HARD DRIVE
                  <!-- Generated by Accware Online Build # ( Components Build # 5.1.0.460 ).
                  (C) 1999-2002 Icode, Inc. -->
                  &nbsp;</strong></font>

                  <a href="javascrip t:item('14')" class=msn><font face="verdana"
                  size=1><b>Click for Item Details</b></font></a>

                  <input type="hidden" name="kitname14 " value="SECONDAR Y HARD DRIVE
                  <!-- Generated by Accware Online Build # ( Components Build # 5.1.0.460 ).
                  (C) 1999-2002 Icode, Inc. -->
                  "></td>

                  <td class=siteNav4T D width = "5%" align = center><font face="Verdana"
                  size="1" color="#000000" ><b>&nbsp;</b>&nbsp;</font></td>

                  <td class=siteNav4T D width = "10%" align="center"> <font face="Verdana"
                  size="1" color="#000000" ><b>&nbsp;</b></font></td></tr>
                  <tr><td align = "left">

                  <select name="sel14" onChange="Calcu lateTotal()"
                  class=CustomKit DropDown>

                  <option selected value="KISHDD2# 0#KISHDD2#0.00# 1">
                  Slave / IDE Raid w/MB Support
                  </option>

                  <option value="HDDWDD72 06#57.75#HDDWDD 7206">
                  40.0 WD IDE 7200 RPM ATA/100 2MB : [+ $72.19]
                  </option>

                  <option value="HDDWDD72 060#64.50#HDDWD D72060">
                  40.0 WD IDE 7200 RPM ATA/100 8MB : [+ $80.63]
                  </option>

                  <option value="HDDWDD72 55#69.50#HDDWDD 7255">
                  80.1 WD IDE 7200 RPM ATA/100 : [+ $86.88]
                  </option>

                  <option value="HDDWDD72 60#77.00#HDDWDD 7260">
                  80.1 WD IDE 7200 RPM ATA 100/ 8MB : [+ $96.25]
                  </option>

                  <option value="HDDWDD72 85#99.75#HDDWDD 7285">
                  120 WD IDE 7200 RPM ATA/100/8 MB : [+ $124.69]
                  </option>

                  <option value="HDDWDD72 96#164.75#HDDWD D7296">
                  200 WD IDE 7200 RPM ATA/100 8MB : [+ $205.94]
                  </option>

                  <option value="KISSEP#0 .00#KISSEP">
                  ----------------------------------------
                  </option>

                  <option value="HDDMXT70 34#58.50#HDDMXT 7034">
                  40.0 MAXTOR IDE 7200 RPM ATA/133 : [+ $73.13]
                  </option>

                  <option value="HDDMXT70 43#72.50#HDDMXT 7043">
                  80.0 MAXTOR IDE 7200 RPM ATA/133 : [+ $90.63]
                  </option>

                  <option value="KISSEP2# 0.00#KISSEP2">
                  ----------------------------------------
                  </option>

                  <option value="HDDMXT80 28#84.75#HDDMXT 8028">
                  MAXTOR 80 GIG 7200 RPM SERIAL ATA : [+ $105.94]
                  </option>

                  <option value="HDDMXT80 29#114.00#HDDMX T8029">
                  MAXTOR 120 GIG 7200 RPM SERIAL ATA : [+ $142.50]
                  </option>

                  <option value="HDDWDD73 60#113.50#HDDWD D7360">
                  120GB WD SE SATA 7200RPM 8MB CACHE : [+ $141.88]
                  </option>

                  <option value="KISSEP3# 0.00#KISSEP3">
                  ----------------------------------------
                  </option>

                  <option value="HDDIBM10 84#59.75#HDDIBM 1084">
                  IBM/HITACHI 40GIG 7200 RPM ATA 100 2MB : [+ $74.69]
                  </option>

                  <option value="HDDIBM10 98#68.50#HDDIBM 1098">
                  IBM/HITACHI 80 GIG 7200 RPM ATA 100 2MB : [+ $85.63]
                  </option>

                  <option value="KISNONE# 0.00#KISNONE">
                  NONE
                  </option>

                  </select>


                  </td>

                  <td align="center">
                  <input type="text" name="price14" value="0.00" size="6" style="font-family:
                  Arial; font-size: 10; text-align: right; font-weight: bolder; border:
                  medium" readonly onfocus = "this.blur( )"></td>

                  <td nowrap align="center"> <font face="Verdana" size="1"
                  color="#000000" ><b>1</b></font></td></tr>

                  <tr>
                  <td height=20 class=siteNav4T D width = "85%">
                  <font face="Verdana" size="1" color="#000000" ><strong>MODE MS
                  <!-- Generated by Accware Online Build # ( Components Build # 5.1.0.460 ).
                  (C) 1999-2002 Icode, Inc. -->
                  &nbsp;</strong></font>

                  <a href="javascrip t:item('15')" class=msn><font face="verdana"
                  size=1><b>Click for Item Details</b></font></a>

                  <input type="hidden" name="kitname15 " value="MODEMS
                  <!-- Generated by Accware Online Build # ( Components Build # 5.1.0.460 ).
                  (C) 1999-2002 Icode, Inc. -->
                  "></td>

                  <td class=siteNav4T D width = "5%" align = center><font face="Verdana"
                  size="1" color="#000000" ><b>&nbsp;</b>&nbsp;</font></td>

                  <td class=siteNav4T D width = "10%" align="center"> <font face="Verdana"
                  size="1" color="#000000" ><b>&nbsp;</b></font></td></tr>
                  <tr><td align = "left">

                  <select name="sel15" onChange="Calcu lateTotal()"
                  class=CustomKit DropDown>

                  <option selected value="MODBCI10 10#0#MODBCI1010 #10.50#1">
                  BCI 56K V.92 LUCENT PCI RETAIL
                  </option>

                  <option value="MODAOP10 20#-0.75#MODAOP1020 ">
                  AOPEN 56K V.92 MODEM 3 YEAR WARRANTY : [- $0.94]
                  </option>

                  <option value="MODUSR10 20#7.25#MODUSR1 020">
                  USR 56K PCI V.90 W/VOICE : [+ $9.06]
                  </option>

                  <option value="KISNONE#-10.50#KISNONE">
                  NONE : [- $13.13]
                  </option>

                  </select>


                  </td>

                  <td align="center">
                  <input type="text" name="price15" value="13.13" size="6"
                  style="font-family: Arial; font-size: 10; text-align: right; font-weight:
                  bolder; border: medium" readonly onfocus = "this.blur( )"></td>

                  <td nowrap align="center"> <font face="Verdana" size="1"
                  color="#000000" ><b>1</b></font></td></tr>

                  <tr>
                  <td height=20 class=siteNav4T D width = "85%">
                  <font face="Verdana" size="1" color="#000000" ><strong>NETWOR KING - NETWORK
                  ADAPTERS
                  <!-- Generated by Accware Online Build # ( Components Build # 5.1.0.460 ).
                  (C) 1999-2002 Icode, Inc. -->
                  &nbsp;</strong></font>

                  <a href="javascrip t:item('16')" class=msn><font face="verdana"
                  size=1><b>Click for Item Details</b></font></a>

                  <input type="hidden" name="kitname16 " value="NETWORKI NG - NETWORK ADAPTERS
                  <!-- Generated by Accware Online Build # ( Components Build # 5.1.0.460 ).
                  (C) 1999-2002 Icode, Inc. -->
                  "></td>

                  <td class=siteNav4T D width = "5%" align = center><font face="Verdana"
                  size="1" color="#000000" ><b>&nbsp;</b>&nbsp;</font></td>

                  <td class=siteNav4T D width = "10%" align="center"> <font face="Verdana"
                  size="1" color="#000000" ><b>&nbsp;</b></font></td></tr>
                  <tr><td align = "left">

                  <select name="sel16" onChange="Calcu lateTotal()"
                  class=CustomKit DropDown>

                  <option selected value="LANAOP10 10#0#LANAOP1010 #6.00#1">
                  AOPEN 10/100M PCI NIC REALTEKCHIP 325
                  </option>

                  <option value="LANZNT10 00#-0.25#LANZNT1000 ">
                  ZONET PCI 10/100 ETHERNET REALTEK CHIP : [- $0.31]
                  </option>

                  <option value="LANAOP10 55#11.75#LANAOP 1055">
                  AOPEN 10/100 PCMCIA 32BIT LAN CARD : [+ $14.69]
                  </option>

                  <option value="LANINT10 06#20.75#LANINT 1006">
                  INTEL PRO PCI 100 LAN CARD W/WOL : [+ $25.94]
                  </option>

                  <option value="LAN3CM10 05#19.50#LAN3CM 1005">
                  3COM 905CX-TXM,10/100 W/WAKE,CABLE : [+ $24.38]
                  </option>

                  <option value="KISSEP#0 .00#KISSEP">
                  *** WIRELESS ADAPTERS ***
                  </option>

                  <option value="LANDLK10 62#44.75#LANDLK 1062">
                  D-LINK 2.4GHZ 22MG WRLS PCI ADAPTER CARD : [+ $55.94]
                  </option>

                  <option value="KISNONE#-6.00#KISNONE">
                  NONE : [- $7.50]
                  </option>

                  </select>


                  </td>

                  <td align="center">
                  <input type="text" name="price16" value="7.50" size="6" style="font-family:
                  Arial; font-size: 10; text-align: right; font-weight: bolder; border:
                  medium" readonly onfocus = "this.blur( )"></td>

                  <td nowrap align="center"> <font face="Verdana" size="1"
                  color="#000000" ><b>1</b></font></td></tr>

                  <tr>
                  <td height=20 class=siteNav4T D width = "85%">
                  <font face="Verdana" size="1" color="#000000" ><strong>PRIMAR Y CD-ROM / DVD
                  <!-- Generated by Accware Online Build # ( Components Build # 5.1.0.460 ).
                  (C) 1999-2002 Icode, Inc. -->
                  &nbsp;</strong></font>

                  <a href="javascrip t:item('17')" class=msn><font face="verdana"
                  size=1><b>Click for Item Details</b></font></a>

                  <input type="hidden" name="kitname17 " value="PRIMARY CD-ROM / DVD
                  <!-- Generated by Accware Online Build # ( Components Build # 5.1.0.460 ).
                  (C) 1999-2002 Icode, Inc. -->
                  "></td>

                  <td class=siteNav4T D width = "5%" align = center><font face="Verdana"
                  size="1" color="#000000" ><b>&nbsp;</b>&nbsp;</font></td>

                  <td class=siteNav4T D width = "10%" align="center"> <font face="Verdana"
                  size="1" color="#000000" ><b>&nbsp;</b></font></td></tr>
                  <tr><td align = "left">

                  <select name="sel17" onChange="Calcu lateTotal()"
                  class=CustomKit DropDown>

                  <option selected value="KISALLCD R#0#KISALLCDR#0 .00#1">
                  CD & DVD
                  </option>

                  <option value="CDRMTS10 06#17.75#CDRMTS 1006">
                  54X MITSUMI IDE CD ROM BULK : [+ $22.19]
                  </option>

                  <option value="CDRSON10 02#17.25#CDRSON 1002">
                  52X SONY IDE CDROM BULK : [+ $21.56]
                  </option>

                  <option value="CDRLIT10 03#19.75#CDRLIT 1003">
                  52X LITEON IDE CD-ROM RETAIL : [+ $24.69]
                  </option>

                  <option value="CDRSON10 03#18.75#CDRSON 1003">
                  BLACK SONY 52X IDE CDROM BULK : [+ $23.44]
                  </option>

                  <option value="KISSEP#0 .00#KISSEP">
                  ------[ DVD-ROM DRIVES ]------
                  </option>

                  <option value="CDVLIT10 001#31.25#CDVLI T10001">
                  * 16X LITEON DVD RETAIL BOX : [+ $39.06]
                  </option>

                  <option value="CDVMSI10 00#32.75#CDVMSI 1000">
                  16X MSI DVD RETAIL BOX : [+ $40.94]
                  </option>

                  </select>


                  </td>

                  <td align="center">
                  <input type="text" name="price17" value="0.00" size="6" style="font-family:
                  Arial; font-size: 10; text-align: right; font-weight: bolder; border:
                  medium" readonly onfocus = "this.blur( )"></td>

                  <td nowrap align="center"> <font face="Verdana" size="1"
                  color="#000000" ><b>1</b></font></td></tr>

                  <tr>
                  <td height=20 class=siteNav4T D width = "85%">
                  <font face="Verdana" size="1" color="#000000" ><strong>SECOND ARY CDRW /
                  DVD-R / DVD+R
                  <!-- Generated by Accware Online Build # ( Components Build # 5.1.0.460 ).
                  (C) 1999-2002 Icode, Inc. -->
                  &nbsp;</strong></font>

                  <a href="javascrip t:item('18')" class=msn><font face="verdana"
                  size=1><b>Click for Item Details</b></font></a>

                  <input type="hidden" name="kitname18 " value="SECONDAR Y CDRW / DVD-R /
                  DVD+R
                  <!-- Generated by Accware Online Build # ( Components Build # 5.1.0.460 ).
                  (C) 1999-2002 Icode, Inc. -->
                  "></td>

                  <td class=siteNav4T D width = "5%" align = center><font face="Verdana"
                  size="1" color="#000000" ><b>&nbsp;</b>&nbsp;</font></td>

                  <td class=siteNav4T D width = "10%" align="center"> <font face="Verdana"
                  size="1" color="#000000" ><b>&nbsp;</b></font></td></tr>
                  <tr><td align = "left">

                  <select name="sel18" onChange="Calcu lateTotal()"
                  class=CustomKit DropDown>

                  <option selected value="KISALLCD R2#0#KISALLCDR2 #0.00#1">
                  REWRITEABLE DEVICES
                  </option>

                  <option value="CDWMSI10 10#0.00#CDWMSI1 010">
                  52X32X52 MICROSTAR CDRW RETAIL BOX
                  </option>

                  <option value="CDWAOP10 20#37.75#CDWAOP 1020">
                  3 COLOR 52X32X52 AOPEN CDRW RETAIL BOX : [+ $47.19]
                  </option>

                  <option value="CDWSON10 20#38.75#CDWSON 1020">
                  52X24X52 SONY BULK W/SOFTWARE : [+ $48.44]
                  </option>

                  <option value="CDWLIT10 113#37.75#CDWLI T10113">
                  52X32X52 LITEON CDRW IDE RETAIL : [+ $47.19]
                  </option>

                  <option value="CDWSON10 15#41.75#CDWSON 1015">
                  BLACK 52X24X52 SONY BULK W/SOFTWARE : [+ $52.19]
                  </option>

                  <option value="KISSEP2# 0.00#KISSEP2">
                  ------[ CDRW / DVD COMBO DRIVES ]------
                  </option>

                  <option value="CDVLIT10 10#49.75#CDVLIT 1010">
                  16XDVD-48X24X48 CDRW LITEON RETAIL : [+ $62.19]
                  </option>

                  <option value="CDVLIT10 12#0.00#CDVLIT1 012">
                  BLACK 16XDVD-48X24X48 CDRW LITEON RETAIL
                  </option>

                  <option value="KISSEP#0 .00#KISSEP">
                  ------[ DVD +/- RW DRIVES ]------
                  </option>

                  <option value="CDVAOP10 20#99.75#CDVAOP 1020">
                  AOPEN 4X DVD+R/+RW 24X10X40 CDRW RETAIL : [+ $124.69]
                  </option>

                  <option value="CDVOPT10 31#109.00#CDVOP T1031">
                  4X4X10 OPTORITE DVD+-R/RW 24X10X40 CDRW : [+ $136.25]
                  </option>

                  <option value="CDVOPT10 32#112.00#CDVOP T1032">
                  BLACK 4X4X10 OPTORITE DVD+-R/RW COMBO : [+ $140.00]
                  </option>

                  <option value="CDVSON10 07#145.00#CDVSO N1007">
                  SONY 4DVD+/-RW BULK W/SOFTWARE : [+ $181.25]
                  </option>

                  <option value="CDVPLE10 00#165.00#CDVPL E1000">
                  PLEXTOR DVD+R/RW - CD-R/RW RETAIL : [+ $206.25]
                  </option>

                  <option value="KISNONE# 0.00#KISNONE">
                  NONE
                  </option>

                  </select>


                  </td>

                  <td align="center">
                  <input type="text" name="price18" value="0.00" size="6" style="font-family:
                  Arial; font-size: 10; text-align: right; font-weight: bolder; border:
                  medium" readonly onfocus = "this.blur( )"></td>

                  <td nowrap align="center"> <font face="Verdana" size="1"
                  color="#000000" ><b>1</b></font></td></tr>

                  <tr>
                  <td height=20 class=siteNav4T D width = "85%">
                  <font face="Verdana" size="1" color="#000000" ><strong>THIR D CD-ROM / DVD /
                  CDRW
                  <!-- Generated by Accware Online Build # ( Components Build # 5.1.0.460 ).
                  (C) 1999-2002 Icode, Inc. -->
                  &nbsp;</strong></font>

                  <a href="javascrip t:item('19')" class=msn><font face="verdana"
                  size=1><b>Click for Item Details</b></font></a>

                  <input type="hidden" name="kitname19 " value="THIRD CD-ROM / DVD / CDRW
                  <!-- Generated by Accware Online Build # ( Components Build # 5.1.0.460 ).
                  (C) 1999-2002 Icode, Inc. -->
                  "></td>

                  <td class=siteNav4T D width = "5%" align = center><font face="Verdana"
                  size="1" color="#000000" ><b>&nbsp;</b>&nbsp;</font></td>

                  <td class=siteNav4T D width = "10%" align="center"> <font face="Verdana"
                  size="1" color="#000000" ><b>&nbsp;</b></font></td></tr>
                  <tr><td align = "left">

                  <select name="sel19" onChange="Calcu lateTotal()"
                  class=CustomKit DropDown>

                  <option selected value="KISALLCD R3#0#KISALLCDR3 #0.00#1">
                  OPTIONAL THIRD DRIVE
                  </option>

                  <option value="CDRMTS10 06#17.75#CDRMTS 1006">
                  54X MITSUMI IDE CD ROM BULK : [+ $22.19]
                  </option>

                  <option value="CDRSON10 02#17.25#CDRSON 1002">
                  52X SONY IDE CDROM BULK : [+ $21.56]
                  </option>

                  <option value="CDRLIT10 03#19.75#CDRLIT 1003">
                  52X LITEON IDE CD-ROM RETAIL : [+ $24.69]
                  </option>

                  <option value="CDRSON10 03#18.75#CDRSON 1003">
                  BLACK SONY 52X IDE CDROM BULK : [+ $23.44]
                  </option>

                  <option value="KISSEP#0 .00#KISSEP">
                  ------[ DVD-ROM DRIVES ]------
                  </option>

                  <option value="CDVLIT10 001#31.25#CDVLI T10001">
                  * 16X LITEON DVD RETAIL BOX : [+ $39.06]
                  </option>

                  <option value="CDVMSI10 00#32.75#CDVMSI 1000">
                  16X MSI DVD RETAIL BOX : [+ $40.94]
                  </option>

                  <option value="KISSEP2# 0.00#KISSEP2">
                  ------[ REWRITEABLE DRIVES ]------
                  </option>

                  <option value="CDWMSI10 10#0.00#CDWMSI1 010">
                  52X32X52 MICROSTAR CDRW RETAIL BOX
                  </option>

                  <option value="CDWAOP10 20#37.75#CDWAOP 1020">
                  3 COLOR 52X32X52 AOPEN CDRW RETAIL BOX : [+ $47.19]
                  </option>

                  <option value="CDWSON10 20#38.75#CDWSON 1020">
                  52X24X52 SONY BULK W/SOFTWARE : [+ $48.44]
                  </option>

                  <option value="CDWLIT10 113#37.75#CDWLI T10113">
                  52X32X52 LITEON CDRW IDE RETAIL : [+ $47.19]
                  </option>

                  <option value="CDWSON10 15#41.75#CDWSON 1015">
                  BLACK 52X24X52 SONY BULK W/SOFTWARE : [+ $52.19]
                  </option>

                  <option value="KISSEP3# 0.00#KISSEP3">
                  ------[ CDRW / DVD COMBO DRIVES ]------
                  </option>

                  <option value="CDVLIT10 10#49.75#CDVLIT 1010">
                  16XDVD-48X24X48 CDRW LITEON RETAIL : [+ $62.19]
                  </option>

                  <option value="CDVLIT10 12#0.00#CDVLIT1 012">
                  BLACK 16XDVD-48X24X48 CDRW LITEON RETAIL
                  </option>

                  <option value="KISSEP4# 0.00#KISSEP4">
                  ------[ DVD +/- RW DRIVES ]------
                  </option>

                  <option value="CDVAOP10 20#99.75#CDVAOP 1020">
                  AOPEN 4X DVD+R/+RW 24X10X40 CDRW RETAIL : [+ $124.69]
                  </option>

                  <option value="CDVOPT10 31#109.00#CDVOP T1031">
                  4X4X10 OPTORITE DVD+-R/RW 24X10X40 CDRW : [+ $136.25]
                  </option>

                  <option value="CDVOPT10 32#112.00#CDVOP T1032">
                  BLACK 4X4X10 OPTORITE DVD+-R/RW COMBO : [+ $140.00]
                  </option>

                  <option value="CDVPLE10 00#165.00#CDVPL E1000">
                  PLEXTOR DVD+R/RW - CD-R/RW RETAIL : [+ $206.25]
                  </option>

                  <option value="CDVSON10 07#145.00#CDVSO N1007">
                  SONY 4DVD+/-RW BULK W/SOFTWARE : [+ $181.25]
                  </option>

                  <option value="KISNONE# 0.00#KISNONE">
                  NONE
                  </option>

                  </select>


                  </td>

                  <td align="center">
                  <input type="text" name="price19" value="0.00" size="6" style="font-family:
                  Arial; font-size: 10; text-align: right; font-weight: bolder; border:
                  medium" readonly onfocus = "this.blur( )"></td>

                  <td nowrap align="center"> <font face="Verdana" size="1"
                  color="#000000" ><b>1</b></font></td></tr>

                  <tr>
                  <td height=20 class=siteNav4T D width = "85%">
                  <font face="Verdana" size="1" color="#000000" ><strong>FLOP PY DRIVES
                  <!-- Generated by Accware Online Build # ( Components Build # 5.1.0.460 ).
                  (C) 1999-2002 Icode, Inc. -->
                  &nbsp;</strong></font>

                  <a href="javascrip t:item('20')" class=msn><font face="verdana"
                  size=1><b>Click for Item Details</b></font></a>

                  <input type="hidden" name="kitname20 " value="FLOPPY DRIVES
                  <!-- Generated by Accware Online Build # ( Components Build # 5.1.0.460 ).
                  (C) 1999-2002 Icode, Inc. -->
                  "></td>

                  <td class=siteNav4T D width = "5%" align = center><font face="Verdana"
                  size="1" color="#000000" ><b>&nbsp;</b>&nbsp;</font></td>

                  <td class=siteNav4T D width = "10%" align="center"> <font face="Verdana"
                  size="1" color="#000000" ><b>&nbsp;</b></font></td></tr>
                  <tr><td align = "left">

                  <select name="sel20" onChange="Calcu lateTotal()"
                  class=CustomKit DropDown>

                  <option selected value="FDDALP10 00#0#FDDALP1000 #7.75#1">
                  ALPS 1.44 FLOPPY DRIVE
                  </option>

                  <option value="FDDMIT10 00#0.00#FDDMIT1 000">
                  1.44 FLOPPY MITSUMI
                  </option>

                  <option value="FDDSON10 00#0.50#FDDSON1 000">
                  1.44 FLOPPY SONY : [+ $0.63]
                  </option>

                  <option value="FDDTEA10 00#1.00#FDDTEA1 000">
                  1.44 FLOPPY TEAC : [+ $1.25]
                  </option>

                  </select>


                  </td>

                  <td align="center">
                  <input type="text" name="price20" value="9.69" size="6" style="font-family:
                  Arial; font-size: 10; text-align: right; font-weight: bolder; border:
                  medium" readonly onfocus = "this.blur( )"></td>

                  <td nowrap align="center"> <font face="Verdana" size="1"
                  color="#000000" ><b>1</b></font></td></tr>

                  <tr>
                  <td height=20 class=siteNav4T D width = "85%">
                  <font face="Verdana" size="1" color="#000000" ><strong>KEYBOA RDS
                  <!-- Generated by Accware Online Build # ( Components Build # 5.1.0.460 ).
                  (C) 1999-2002 Icode, Inc. -->
                  &nbsp;</strong></font>

                  <a href="javascrip t:item('21')" class=msn><font face="verdana"
                  size=1><b>Click for Item Details</b></font></a>

                  <input type="hidden" name="kitname21 " value="KEYBOARD S
                  <!-- Generated by Accware Online Build # ( Components Build # 5.1.0.460 ).
                  (C) 1999-2002 Icode, Inc. -->
                  "></td>

                  <td class=siteNav4T D width = "5%" align = center><font face="Verdana"
                  size="1" color="#000000" ><b>&nbsp;</b>&nbsp;</font></td>

                  <td class=siteNav4T D width = "10%" align="center"> <font face="Verdana"
                  size="1" color="#000000" ><b>&nbsp;</b></font></td></tr>
                  <tr><td align = "left">

                  <select name="sel21" onChange="Calcu lateTotal()"
                  class=CustomKit DropDown>

                  <option selected value="KBDMTS10 01#0#KBDMTS1001 #19.75#1">
                  MS INTERNET PS/2 KB INTELLIMOUSE COMBO
                  </option>

                  <option value="KBDMTS10 00#-13.00#KBDMTS100 0">
                  MITSUMI PS2 SMALL KEYBOARD : [- $16.25]
                  </option>

                  <option value="KBDAOP10 04#-11.00#KBDAOP100 4">
                  AOPEN 104 INTERNET PS/2 KEYBOARD RETAIL : [- $13.75]
                  </option>

                  <option value="KBDLOG10 04#-10.00#KBDLOG100 4">
                  LOGITECH DELUXE ACCESS 104 KEY RETAIL : [- $12.50]
                  </option>

                  <option value="KBDAOP10 07#-7.25#KBDAOP1007 ">
                  BLUE/BEIGE AOPEN MULITIMEDIA KB-WHL PS2 : [- $9.06]
                  </option>

                  <option value="KBDKEY10 03#-6.00#KBDKEY1003 ">
                  KEYTRONIC KEYBRD W/PS2 SCROLL MOUSE : [- $7.50]
                  </option>

                  <option value="KBDKEY10 07#3.75#KBDKEY1 007">
                  BLACK KEYTRONIC 104 KB W/PS2 SCROLL MOU : [+ $4.69]
                  </option>

                  <option value="KBDMIC10 14#5.00#KBDMIC1 014">
                  MS MULTIMEDIA KB & OPTICAL MOUSE PS/2 : [+ $6.25]
                  </option>

                  <option value="KBDBEL10 00#12.75#KBDBEL 1000">
                  BLACK BELKIN WIRELESS KB & MOUSE PS/2 : [+ $15.94]
                  </option>

                  <option value="KBDMIC10 18#13.00#KBDMIC 1018">
                  BLACK MS KD & INTELI OPTICAL MOUSE PS/2 : [+ $16.25]
                  </option>

                  <option value="KBDMIC10 17#32.00#KBDMIC 1017">
                  BLACK/SILV MS WIRELES OPT. K/M PS/2-USB : [+ $40.00]
                  </option>

                  <option value="KISNONE#-19.75#KISNONE">
                  NONE : [- $24.69]
                  </option>

                  </select>


                  </td>

                  <td align="center">
                  <input type="text" name="price21" value="24.69" size="6"
                  style="font-family: Arial; font-size: 10; text-align: right; font-weight:
                  bolder; border: medium" readonly onfocus = "this.blur( )"></td>

                  <td nowrap align="center"> <font face="Verdana" size="1"
                  color="#000000" ><b>1</b></font></td></tr>

                  <tr>
                  <td height=20 class=siteNav4T D width = "85%">
                  <font face="Verdana" size="1" color="#000000" ><strong>SELE CT YOUR MOUSE
                  <!-- Generated by Accware Online Build # ( Components Build # 5.1.0.460 ).
                  (C) 1999-2002 Icode, Inc. -->
                  &nbsp;</strong></font>

                  <a href="javascrip t:item('22')" class=msn><font face="verdana"
                  size=1><b>Click for Item Details</b></font></a>

                  <input type="hidden" name="kitname22 " value="SELECT YOUR MOUSE
                  <!-- Generated by Accware Online Build # ( Components Build # 5.1.0.460 ).
                  (C) 1999-2002 Icode, Inc. -->
                  "></td>

                  <td class=siteNav4T D width = "5%" align = center><font face="Verdana"
                  size="1" color="#000000" ><b>&nbsp;</b>&nbsp;</font></td>

                  <td class=siteNav4T D width = "10%" align="center"> <font face="Verdana"
                  size="1" color="#000000" ><b>&nbsp;</b></font></td></tr>
                  <tr><td align = "left">

                  <select name="sel22" onChange="Calcu lateTotal()"
                  class=CustomKit DropDown>

                  <option selected value="KISALLMO U#0#KISALLMOU#0 .00#1">
                  OPTIONAL MOUSE
                  </option>

                  <option value="MOUMTS10 02#4.25#MOUMTS1 002">
                  MITSUMI PS2 SCROLL MOUSE : [+ $5.31]
                  </option>

                  <option value="MOUMIC10 00#6.25#MOUMIC1 000">
                  MS INTELLIMOUSE PS2 BULK : [+ $7.81]
                  </option>

                  <option value="MOUMTS10 03#7.50#MOUMTS1 003">
                  MITSUMI PS2 OPTICAL SCROLL MOUSE : [+ $9.38]
                  </option>

                  <option value="MOUMTS10 04#7.75#MOUMTS1 004">
                  BLACK MITSUMI PS2 OPTICAL SCROLL MOUSE : [+ $9.69]
                  </option>

                  <option value="MOUAOP10 04#8.75#MOUAOP1 004">
                  AOPEN OPTICAL 2 BUTTON WHEEL PS/2 MOUSE : [+ $10.94]
                  </option>

                  <option value="MOULOG10 12#15.75#MOULOG 1012">
                  LOGITECH 2 BUTTN OPTICAL SCROLL PS2/USB : [+ $19.69]
                  </option>

                  <option value="KISNONE# 0.00#KISNONE">
                  NONE
                  </option>

                  </select>


                  </td>

                  <td align="center">
                  <input type="text" name="price22" value="0.00" size="6" style="font-family:
                  Arial; font-size: 10; text-align: right; font-weight: bolder; border:
                  medium" readonly onfocus = "this.blur( )"></td>

                  <td nowrap align="center"> <font face="Verdana" size="1"
                  color="#000000" ><b>1</b></font></td></tr>

                  <tr>
                  <td height=20 class=siteNav4T D width = "85%">
                  <font face="Verdana" size="1" color="#000000" ><strong>SPEAKE RS
                  <!-- Generated by Accware Online Build # ( Components Build # 5.1.0.460 ).
                  (C) 1999-2002 Icode, Inc. -->
                  &nbsp;</strong></font>

                  <a href="javascrip t:item('23')" class=msn><font face="verdana"
                  size=1><b>Click for Item Details</b></font></a>

                  <input type="hidden" name="kitname23 " value="SPEAKERS
                  <!-- Generated by Accware Online Build # ( Components Build # 5.1.0.460 ).
                  (C) 1999-2002 Icode, Inc. -->
                  "></td>

                  <td class=siteNav4T D width = "5%" align = center><font face="Verdana"
                  size="1" color="#000000" ><b>&nbsp;</b>&nbsp;</font></td>

                  <td class=siteNav4T D width = "10%" align="center"> <font face="Verdana"
                  size="1" color="#000000" ><b>&nbsp;</b></font></td></tr>
                  <tr><td align = "left">

                  <select name="sel23" onChange="Calcu lateTotal()"
                  class=CustomKit DropDown>

                  <option selected value="SPKCAS10 40#0#SPKCAS1040 #4.25#1">
                  CYBER ACOUSTICS 120 WATT PMPO 2PC
                  </option>

                  <option value="SPKLAB10 02#-3.26#SPKLAB1002 ">
                  LABTEC HEADSET "BULK" CURVE 465 : [- $4.08]
                  </option>

                  <option value="SPKCAS10 45#0.00#SPKCAS1 045">
                  CYBER ACOUSTICS 120 W/PMPO 2PC USB
                  </option>

                  <option value="SPKCAS10 41#0.00#SPKCAS1 041">
                  BLACK CYBER ACCOUSTICS 120 WATT PMPO 2P
                  </option>

                  <option value="SPKHAR10 22#1.50#SPKHAR1 022">
                  BLACK 2PC HARMAN KARDON SPEAKERS : [+ $1.88]
                  </option>

                  <option value="SPKCAS10 08A#14.50#SPKCA S1008A">
                  BLACK CYBER ACOUSTICS 14 WATTS 3-PC : [+ $18.13]
                  </option>

                  <option value="SPKCAS10 25#14.50#SPKCAS 1025">
                  CYBER ACOUSTICS 10 WATT 3 PC SUB SET : [+ $18.13]
                  </option>

                  <option value="SPKALC10 19#23.50#SPKALC 1019">
                  BLACK ALTEC LANSING 3 PC SUB SET : [+ $29.38]
                  </option>

                  <option value="SPKCAS10 11#54.75#SPKCAS 1011">
                  BLACK CYBER AC. 110WATT 3 PC SUP SET : [+ $68.44]
                  </option>

                  <option value="KISNONE#-4.25#KISNONE">
                  NONE : [- $5.31]
                  </option>

                  </select>


                  </td>

                  <td align="center">
                  <input type="text" name="price23" value="5.31" size="6" style="font-family:
                  Arial; font-size: 10; text-align: right; font-weight: bolder; border:
                  medium" readonly onfocus = "this.blur( )"></td>

                  <td nowrap align="center"> <font face="Verdana" size="1"
                  color="#000000" ><b>1</b></font></td></tr>

                  <tr>
                  <td height=20 class=siteNav4T D width = "85%">
                  <font face="Verdana" size="1" color="#000000" ><strong>SELE CT YOUR MONITOR
                  <!-- Generated by Accware Online Build # ( Components Build # 5.1.0.460 ).
                  (C) 1999-2002 Icode, Inc. -->
                  &nbsp;</strong></font>

                  <a href="javascrip t:item('24')" class=msn><font face="verdana"
                  size=1><b>Click for Item Details</b></font></a>

                  <input type="hidden" name="kitname24 " value="SELECT YOUR MONITOR
                  <!-- Generated by Accware Online Build # ( Components Build # 5.1.0.460 ).
                  (C) 1999-2002 Icode, Inc. -->
                  "></td>

                  <td class=siteNav4T D width = "5%" align = center><font face="Verdana"
                  size="1" color="#000000" ><b>&nbsp;</b>&nbsp;</font></td>

                  <td class=siteNav4T D width = "10%" align="center"> <font face="Verdana"
                  size="1" color="#000000" ><b>&nbsp;</b></font></td></tr>
                  <tr><td align = "left">

                  <select name="sel24" onChange="Calcu lateTotal()"
                  class=CustomKit DropDown>

                  <option selected value="KISALLMO N#0#KISALLMON#0 .00#1">
                  OPTIONAL MONITOR
                  </option>

                  <option value="MONAOP10 30#0.00#MONAOP1 030">
                  17" AOPEN CRT .27 DPI 1280X1024 OSD
                  </option>

                  <option value="MONGEM10 00#109.75#MONGE M1000">
                  17" GEM .25DP,1280 X 1024,OSD,MPRII : [+ $137.19]
                  </option>

                  <option value="MONHYN10 07#0.00#MONHYN1 007">
                  17" HYUNDAI .25 1280X1024 MINI DYNAFLAT
                  </option>

                  <option value="MONADI13 01#116.75#MONAD I1301">
                  17" ADI .25 1280X1024 PURE FLAT : [+ $145.94]
                  </option>

                  <option value="KISSEP#0 .00#KISSEP">
                  ------[ 19" & 21" MONITORS ]------
                  </option>

                  <option value="MONGEM10 010#155.75#MONG EM10010">
                  19" GEM OEM .25DP 1600X1200 OSD,MPRII : [+ $194.69]
                  </option>

                  <option value="MONGEM11 30#159.00#MONGE M1130">
                  19" BLACK GEM OEM .25DPI 1600X1200 OSD,M : [+ $198.75]
                  </option>

                  <option value="MONHYN10 18#179.00#MONHY N1018">
                  HYUNDAI 19" .25 1600 X 1200 DYNAFLAT : [+ $223.75]
                  </option>

                  <option value="KISSEP2# 0.00#KISSEP2">
                  ------[ LCD MONITORS ]------
                  </option>

                  <option value="MONGEM12 29#0.00#MONGEM1 229">
                  BLACK 15" SCANPORT LCD FLAT PANEL
                  </option>

                  <option value="MONGEM12 40#0.00#MONGEM1 240">
                  BLACK GEM 18.1" .281 DPI LCD FLAT PANEL
                  </option>

                  <option value="KISNONE# 0.00#KISNONE">
                  NONE
                  </option>

                  </select>


                  </td>

                  <td align="center">
                  <input type="text" name="price24" value="0.00" size="6" style="font-family:
                  Arial; font-size: 10; text-align: right; font-weight: bolder; border:
                  medium" readonly onfocus = "this.blur( )"></td>

                  <td nowrap align="center"> <font face="Verdana" size="1"
                  color="#000000" ><b>1</b></font></td></tr>

                  <tr>
                  <td height=20 class=siteNav4T D width = "85%">
                  <font face="Verdana" size="1" color="#000000" ><strong>SOFTWA RE
                  <!-- Generated by Accware Online Build # ( Components Build # 5.1.0.460 ).
                  (C) 1999-2002 Icode, Inc. -->
                  &nbsp;</strong></font>

                  <a href="javascrip t:item('25')" class=msn><font face="verdana"
                  size=1><b>Click for Item Details</b></font></a>

                  <input type="hidden" name="kitname25 " value="SOFTWARE
                  <!-- Generated by Accware Online Build # ( Components Build # 5.1.0.460 ).
                  (C) 1999-2002 Icode, Inc. -->
                  "></td>

                  <td class=siteNav4T D width = "5%" align = center><font face="Verdana"
                  size="1" color="#000000" ><b>&nbsp;</b>&nbsp;</font></td>

                  <td class=siteNav4T D width = "10%" align="center"> <font face="Verdana"
                  size="1" color="#000000" ><b>&nbsp;</b></font></td></tr>
                  <tr><td align = "left">

                  <select name="sel25" onChange="Calcu lateTotal()"
                  class=CustomKit DropDown>

                  <option selected value="SOFMIC05 00#0#SOFMIC0500 #139.00#1">
                  MS WINDOWS XP PROFESSIONAL OEM
                  </option>

                  <option value="SOFMIC04 50#-50.50#SOFMIC045 0">
                  MS WINDOWS XP HOME EDITION OEM : [- $63.13]
                  </option>

                  <option value="SOFMIC10 05A#0.00#SOFMIC 1005A">
                  MS WINDOWS 2000 PRO
                  </option>

                  <option value="KISNONE#-139.00#KISNONE" >
                  NONE : [- $173.75]
                  </option>

                  </select>


                  </td>

                  <td align="center">
                  <input type="text" name="price25" value="173.75" size="6"
                  style="font-family: Arial; font-size: 10; text-align: right; font-weight:
                  bolder; border: medium" readonly onfocus = "this.blur( )"></td>

                  <td nowrap align="center"> <font face="Verdana" size="1"
                  color="#000000" ><b>1</b></font></td></tr>

                  <tr>
                  <td height=20 class=siteNav4T D width = "85%">
                  <font face="Verdana" size="1" color="#000000" ><strong>OFFI CE SUITES /
                  PRODUCTIVITY SOFTWARE
                  <!-- Generated by Accware Online Build # ( Components Build # 5.1.0.460 ).
                  (C) 1999-2002 Icode, Inc. -->
                  &nbsp;</strong></font>

                  <a href="javascrip t:item('26')" class=msn><font face="verdana"
                  size=1><b>Click for Item Details</b></font></a>

                  <input type="hidden" name="kitname26 " value="OFFICE SUITES / PRODUCTIVITY
                  SOFTWARE
                  <!-- Generated by Accware Online Build # ( Components Build # 5.1.0.460 ).
                  (C) 1999-2002 Icode, Inc. -->
                  "></td>

                  <td class=siteNav4T D width = "5%" align = center><font face="Verdana"
                  size="1" color="#000000" ><b>&nbsp;</b>&nbsp;</font></td>

                  <td class=siteNav4T D width = "10%" align="center"> <font face="Verdana"
                  size="1" color="#000000" ><b>&nbsp;</b></font></td></tr>
                  <tr><td align = "left">

                  <select name="sel26" onChange="Calcu lateTotal()"
                  class=CustomKit DropDown>

                  <option selected value="KISSOFPR O#0#KISSOFPRO#0 .00#1">
                  PRODUCTIVITY SUITES
                  </option>

                  <option value="SOFMIC10 44#171.50#SOFMI C1044">
                  MICROSOFT OFFICE XP SBE : [+ $214.38]
                  </option>

                  <option value="SOFMIC10 48#299.00#SOFMI C1048">
                  MICROSOFT OFFICE XP PRO : [+ $373.75]
                  </option>

                  <option value="SOFMIC10 49#165.00#SOFMI C1049">
                  MICROSOFT OFFICE BASIC EDITION 2003 : [+ $206.25]
                  </option>

                  <option value="SOFMIC10 52#225.00#SOFMI C1052">
                  MICROSOFT OFFICE SMALL BUSINESS 2003 : [+ $281.25]
                  </option>

                  <option value="SOFMIC10 55#299.00#SOFMI C1055">
                  MICROSOFT OFFICE PROFESSIONAL 2003 : [+ $373.75]
                  </option>

                  <option value="KISNONE# 0.00#KISNONE">
                  NONE
                  </option>

                  </select>


                  </td>

                  <td align="center">
                  <input type="text" name="price26" value="0.00" size="6" style="font-family:
                  Arial; font-size: 10; text-align: right; font-weight: bolder; border:
                  medium" readonly onfocus = "this.blur( )"></td>

                  <td nowrap align="center"> <font face="Verdana" size="1"
                  color="#000000" ><b>1</b></font></td></tr>

                  <tr>
                  <td height=20 class=siteNav4T D width = "85%">
                  <font face="Verdana" size="1" color="#000000" ><strong>ASSEMB LY OPTIONS
                  <!-- Generated by Accware Online Build # ( Components Build # 5.1.0.460 ).
                  (C) 1999-2002 Icode, Inc. -->
                  &nbsp;</strong></font>

                  <a href="javascrip t:item('27')" class=msn><font face="verdana"
                  size=1><b>Click for Item Details</b></font></a>

                  <input type="hidden" name="kitname27 " value="ASSEMBLY OPTIONS
                  <!-- Generated by Accware Online Build # ( Components Build # 5.1.0.460 ).
                  (C) 1999-2002 Icode, Inc. -->
                  "></td>

                  <td class=siteNav4T D width = "5%" align = center><font face="Verdana"
                  size="1" color="#000000" ><b>&nbsp;</b>&nbsp;</font></td>

                  <td class=siteNav4T D width = "10%" align="center"> <font face="Verdana"
                  size="1" color="#000000" ><b>&nbsp;</b></font></td></tr>
                  <tr><td align = "left">

                  <select name="sel27" onChange="Calcu lateTotal()"
                  class=CustomKit DropDown>

                  <option selected value="KISLBR10 00#0#KISLBR1000 #35.00#1">
                  BUILD SYSTEM LOAD OPERATING SYSTEM
                  </option>

                  <option value="KISLBR10 10#-10.00#KISLBR101 0">
                  BUILD SYSTEM WITHOUT SOFTWARE : [- $12.50]
                  </option>

                  <option value="KISLBR10 20#-35.00#KISLBR102 0">
                  PARTS ONLY (DO NOT BUILD) : [- $43.75]
                  </option>

                  </select>


                  </td>

                  <td align="center">
                  <input type="text" name="price27" value="43.75" size="6"
                  style="font-family: Arial; font-size: 10; text-align: right; font-weight:
                  bolder; border: medium" readonly onfocus = "this.blur( )"></td>

                  <td nowrap align="center"> <font face="Verdana" size="1"
                  color="#000000" ><b>1</b></font></td></tr>

                  <tr>
                  <td height=20 class=siteNav4T D width = "85%">
                  <font face="Verdana" size="1" color="#000000" ><strong>PACKIN G MATERIALS
                  <!-- Generated by Accware Online Build # ( Components Build # 5.1.0.460 ).
                  (C) 1999-2002 Icode, Inc. -->
                  &nbsp;</strong></font>

                  <a href=""
                  onClick="window .open('printite m.asp?Source=CK &CartId=ACCW ARE-12317676VTLOH36
                  6&ic=PAKBOX1021 ','winPrint','t oolbar,height=4 00,width=550,sc rollbars,resiza b
                  le');return false;" class=msn><font face="verdana" size=1><b>Click for Item
                  Details</b></font></a>

                  <input type="hidden" name="kitname28 " value="PACKING MATERIALS
                  <!-- Generated by Accware Online Build # ( Components Build # 5.1.0.460 ).
                  (C) 1999-2002 Icode, Inc. -->
                  "></td>

                  <td class=siteNav4T D width = "5%" align = center><font face="Verdana"
                  size="1" color="#000000" ><b>&nbsp;</b>&nbsp;</font></td>

                  <td class=siteNav4T D width = "10%" align="center"> <font face="Verdana"
                  size="1" color="#000000" ><b>&nbsp;</b></font></td></tr>
                  <tr><td align = "left">

                  <font face="verdana" size=2>SHIPPING BOX</font>
                  <input type=hidden name="upg_name2 8" value="SHIPPING BOX" >
                  <input type=hidden name="upgradehi dden28" value="10.00#1" >

                  </td>

                  <td align="center">
                  <input type="text" name="price28" value="12.50" size="6"
                  style="font-family: Arial; font-size: 10; text-align: right; font-weight:
                  bolder; border: medium" readonly onfocus = "this.blur( )"></td>

                  <td nowrap align="center"> <font face="Verdana" size="1"
                  color="#000000" ><b>1</b></font></td></tr>

                  </table></form>
                  <form name="frmKitInf o" method="post"
                  action="customk ititems.asp?Car tId=ACCWARE-12317676VTLOH36 6&ic=BTOWKS01 "
                  onSubmit="Check Config(this);">
                  <input type="hidden" name="qty">
                  <input type="hidden" name="configArr ">
                  <input type="hidden" name="todo">
                  </form>

                  <!------------MAIN BODY ENDS STARTS HERE----------------->
                  </td>
                  </tr>
                  </table>
                  </td>
                  </tr>
                  </table>
                  </td><!--td of middle part ends-->
                  <td bgcolor=black height=100%><im g src=images/bdot.gif width=1></td>
                  <td valign=top bgcolor=white>
                  <BR>
                  <center><img src="images/goldlogo.jpg"></center>
                  <BR><BR>
                  <table border="0" cellspacing="0" cellpadding="0" align=center>
                  <tr>
                  <td width="100%" height="20" align=center><c enter><img
                  src="images/featop_new.gif" align=middle></center></td>
                  </tr>
                  <tr>
                  <td width="100%" bgcolor="#00000 0" valign="top"><c enter>
                  <table border="0" width="100%" cellspacing="0" bgcolor="#00000 0"
                  valign=top height=73>
                  <tr>
                  <td width="100%" valign=top bgcolor=white>
                  <div class=subhead> Login Name : 203549
                  <br>

                  <img src="images/ecart.gif">

                  </td>
                  </tr>
                  </table>
                  </td>
                  </tr>
                  </table><center>< img name="kitimage" src="images/blank.gif" border=0
                  alt="Kit Image"></center>
                  <br>

                  <table width=86% align=center>
                  <tr>
                  <td>
                  <img src="images/stringfinger02. jpg">&nbsp;
                  <html xmlns:t ="urn:schema s-microsoft-com:time"><?IMP ORT namespace="t"
                  implementation= "#default#time2 ">
                  <t:par repeatCount="in definite">
                  <font face="Arial" color=#000099 size=3
                  style="behavior :url(#default#t ime2)" begin="1" dur="1"><b>Don' t forget the
                  necessities:</b></font></div>
                  </t:par><br>
                  <table>
                  <tr><td valign=top><fon t size=2
                  face="Arial"><b >1.</b></font></td><td><font size=2
                  face="Arial"><b >Technology Assurance Program</b></font></td></tr>
                  <tr><td valign=top><fon t size=2
                  face="Arial"><b >2.</b></font></td><td><font size=2 face="Arial"><b >Choose 2
                  Titles for only $29.99</b></font></td></tr>
                  <tr><td valign=top><fon t size=2
                  face="Arial"><b >3.</b></font></td><td><font size=2 face="Arial"><b >Surge &
                  UPS</b></font></td></tr>
                  <tr><td valign=top><fon t size=2
                  face="Arial"><b >4.</b></font></td><td><font size=2
                  face="Arial"><b >Printer</b></font></td></tr>
                  <tr><td valign=top><fon t size=2
                  face="Arial"><b >5.</b></font></td><td><font size=2
                  face="Arial"><b >Paper</b></font></td></tr>
                  <tr><td valign=top><fon t size=2
                  face="Arial"><b >6.</b></font></td><td><font size=2 face="Arial"><b >Got
                  Ink?</b></font></td></tr>
                  <tr><td valign=top><fon t size=2
                  face="Arial"><b >7.</b></font></td><td><font size=2
                  face="Arial"><b >Mousepad</b></font></td></tr>
                  <tr><td valign=top><fon t size=2
                  face="Arial"><b >8.</b></font></td><td><font size=2
                  face="Arial"><b >Training</b></font></td></tr>
                  <tr><td valign=top><fon t size=2
                  face="Arial"><b >9.</b></font></td><td><font size=2 face="Arial"><b >Ask about
                  Home Delivery</b></font></td></tr>
                  </table>
                  <br>
                  <center><img src="images/aol90.jpg" border=0>
                  <font face="Arial" size=2>Your <u>Free</u> 90 day trial awaits
                  you!</b></font></center>
                  </td>
                  </tr>
                  </table>

                  </center>
                  </td>
                  </tr>
                  <tr>
                  <td colspan=3 class=siteNav3T D>

                  <br><table cellpadding=0 cellspacing=0 class=siteNav3T D border=0>
                  <tr><td>&nbsp ;</td>
                  <td width=576 class=siteNav3T D align=center valign=top><FON T SIZE=1
                  STYLE=font:8pt COLOR=#003366 FACE="Verdana,H elvetica,Arial" >
                  <A HREF="index.asp ?CartId=ACCWARE-12317676VTLOH36 6">Home</A> |
                  <A HREF="viewcart. asp?CartId=ACCW ARE-12317676VTLOH36 6">View Cart</A>

                  <P align=center>
                  <div class=content>
                  COMPUSA, All rights reserved.</div>
                  <div class=content>

                  Mail us at :<a href="mailto:we bmaster@compusa .com"
                  class=msn>webma ster@compusa.co m</a><br>

                  Telephone :<b>(281) 584-5209</b>
                  </div></p>
                  </td></tr>
                  </table>

                  </td>
                  </tr>
                  </table>
                  </body>
                  </html>


                  Comment

                  • cwizard

                    #10
                    Re: value is null or not an object, but its defined?

                    I'm trying this from another angle, and getting the same results.

                    This form is defined on the page, the input field "margin" is there and it
                    has a VALUE in it yet I keep getting told that the value isn't set.

                    Code:

                    var base = document.frmKit Amt.txtTotalKit Value.value;
                    var margin = document.forms['frmKitAmount'].elements['margin'].value/100;
                    var newtotal = (1 + margin) * base;
                    document.frmKit Amount.total.va lue = FormatNumber(ne wtotal,2,false, true);

                    the var margin line is where i get dumped..... here's the page:

                    <form name="frmKitAmt ">
                    <input type="hidden" name="itemname" value="AMD ATHLON XP &amp; DURON - DDR
                    &lt;!-- Generated by Accware Online Build # ( Components Build #
                    5.1.0.460 ). (C) 1999-2002 Icode, Inc. --&gt;
                    ">
                    <input type="hidden" name="imglink" value="/mmgss/Images/BTOSHOT-50.JPG">
                    <input type="hidden" name="descripti on" value="Design a system based on the
                    AMD Family of processors, everything you need is at your fingertips! Our
                    trained professionals will assemble the system, saving you time and money!
                    All of our custom orders are carefully reviewed and checked for
                    compatibility before assembly for your convenience.
                    ">
                    <table border= "0" cellspacing="1" cellpadding="0" width="95%">

                    <tr>
                    <td class=siteNav1T D valign="middle" >
                    <table width="100%">
                    <tr>
                    <td colspan="3" align="center" valign="middle" >
                    <font face="Verdana" size="2" color="#ffffff" ><strong>Base
                    Price:</strong> </font>
                    </td>
                    <td>
                    <font face="Verdana" size="2"
                    color="#ffffff" ><strong>$&nbsp ;485.30</strong></font>
                    </td>
                    <td valign="middle" >
                    <font face="Verdana" size="2" color="#FFFFFF" ><strong>Your Price: $
                    </strong></font>
                    <input type="text" name="txtTotalK itValue" value="485.30" size="10"
                    onFocus="this.b lur();">
                    </td>
                    </tr>
                    <tr>
                    <td colspan="4" align="center" valign="middle" >
                    <font face="Verdana" size="2" color="#FFFFFF" ><strong>Markup :
                    </strong></font>
                    <input type="text" name="margin" value=0 size="10"
                    onblur="calc_to tal();">
                    </td>
                    <td valign="middle" >
                    <font face="Verdana" size="2" color="#FFFFFF" ><strong>End Price: $
                    </strong></font>
                    <input type="text" name="total" value="485.30" size="10">
                    </td>
                    </tr>
                    </table>


                    Comment

                    • to heave chunks

                      #11
                      Re: value is null or not an object, but its defined?

                      >I'm calling on a function from within this form, and there are values set[color=blue]
                      >but every time it gets called I get slammed with a run time error...
                      >document.frmKi tAmount.txtTota lKitValue is null or not an object... the
                      >function is like so:[/color]

                      A little bit of a tip when asking for help regarding scripts.
                      Always post an EXACT copy of your script. The best
                      method of this being the use of cut and paste. It avoids
                      typos which you may inadvertently introduce into your post.

                      Anyways, on line 185-186 you have this.

                      var base = document.frmKit Amt.txtTotalKit Value.value;
                      var margin = document.frmKit Amount.margin.v alue/100;

                      If you notice, you have a different form name for margin. It
                      should read

                      var margin = document.frmKit Amt.margin.valu e/100;

                      Peace, Vm
                      Yaz

                      Providing complicated solutions to simple problems since 1997.

                      Comment

                      • cwizard

                        #12
                        Re: value is null or not an object, but its defined?

                        "to heave chunks" <justyaz@aol.co mpels.me> wrote in message
                        news:2003123018 0241.16180.0000 1361@mb-m22.aol.com...
                        [color=blue]
                        > var base = document.frmKit Amt.txtTotalKit Value.value;
                        > var margin = document.frmKit Amount.margin.v alue/100;
                        >
                        > If you notice, you have a different form name for margin. It
                        > should read
                        >
                        > var margin = document.frmKit Amt.margin.valu e/100;[/color]

                        I'm so stupid.

                        THIS is exactly why I came to you guys!!!!

                        HAHAHAHAHAHAHAH ! THANKS!


                        Comment

                        • Alice

                          #13
                          Re: value is null or not an object, but its defined?


                          "cwizard" <cwizard@giblet s.com> wrote in message
                          news:AulIb.4501 $XH1.1128@newss vr23.news.prodi gy.com...[color=blue]
                          > I'm calling on a function from within this form, and there are values set
                          > but every time it gets called I get slammed with a run time error...
                          > document.frmKit Amount.txtTotal KitValue is null or not an object... the[/color]

                          Looking at the code you supply in your message and checking it out on the
                          the actual page the only form name i can find is
                          [color=blue]
                          > <form name="frmKitAmt ">[/color]

                          frmKitAmount does not exist so far as I can tell



                          Comment

                          • Michael Winter

                            #14
                            Re: value is null or not an object, but its defined?

                            On Tue, 30 Dec 2003 20:46:24 GMT, cwizard <cwizard@giblet s.com> wrote:
                            [color=blue]
                            > I'm calling on a function from within this form, and there are values set
                            > but every time it gets called I get slammed with a run time error...
                            > document.frmKit Amount.txtTotal KitValue is null or not an object... the
                            > function is like so:[/color]

                            You'll kick yourself when you read this...
                            [color=blue]
                            > function calc_total()
                            > {
                            > var x,i,base,margin ,total,newmargi n,newtotal;
                            > base = document.frmKit Amount.txtTotal KitValue.value;
                            > margin = document.frmKit Amount.margin.v alue/100;
                            > total = document.frmKit Amount.total.va lue;
                            > newtotal = (1 + margin) * base;
                            > document.frmKit Amount.total.va lue = FormatNumber(ne wtotal,2,false, true);
                            > }
                            >
                            > <form name="frmKitAmt ">[/color]
                            <snip>

                            Notice the name of the form? In your code above, you reference
                            frmKitAmount, when it should in fact be frmKitAmt. Making that change
                            ("Amt" to "Amount", or visa versa) should fix things, but I'd like to make
                            a few suggestions, if I may.

                            When refering to controls in forms, use the "collection s syntax":

                            document.forms['form_name'].elements['control_name']

                            This syntax is supported by far more browsers than the common:

                            document.form_n ame.control_nam e

                            When you use intrinsic events (onclick, etc), place this META element in
                            the HEAD block to specify the scripting language. It's not strictly
                            necessary (browsers will interpret your page without it), but according to
                            the HTML 4 specification, it is required:

                            <META http-equiv="Content-Script-Type" content="text/javascript">

                            Don't use the language attribute in SCRIPT elements; the type attribute is
                            mandatory and is sufficient to indicate the language. Certainly don't do
                            what Ang Talunin did and omit both of them.

                            <SCRIPT type="text/javascript">

                            You should specify a DOCTYPE for your pages. Again, browsers will
                            interpret your pages without one, but that's not the point - the HTML
                            specification requires one.

                            <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
                            "http://www.w3.org/TR/html4/loose.dtd">

                            There are other DOCTYPEs, but as you use deprecated elements and
                            attributes (FONT, bgcolor, etc), this one is the most appropriate. As you
                            do use style sheets in the page you showed here, I would consider revising
                            the document to be HTML Strict compliant where presentation is acheived
                            with style sheets only, and HTML only provides structure.

                            Don't use JavaScript pseudo-URIs (href="javascri pt:...") - they can cause
                            problems. Instead, use onclick events. Whilst I was looking through your
                            HTML, I found this:

                            <a href="javascrip t:CheckConfig(' add');" class="msn">
                            <img src="images/add_to_cart.gif " border="0"></a>

                            You could achieve the same thing with:

                            <IMG src="images/add_to_cart.gif " onclick="CheckC onfig('add')">

                            One advantage with this is that if the user doesn't have JavaScript
                            enabled, they don't get transported to some non-existant location.

                            If you do want to use an anchor to display something using JavaScript, try
                            to make the href attribute point to something useful:

                            <A href="next_page .html" onclick="some_j avascript()">.. .</A>

                            Hope that helps,
                            Mike


                            http://www.w3.org/TR/html4/ The HTML 4.01 Specification

                            --
                            Michael Winter
                            M.Winter@blueyo nder.co.invalid (replace ".invalid" with ".uk" to reply)

                            Comment

                            • Ang Talunin

                              #15
                              Re: value is null or not an object, but its defined?

                              > I'm pretty decent at hacking code, I just can't figure out whats going on[color=blue]
                              > here and I'm stumped![/color]

                              Then you should strip those page's down to just the forms and the functions
                              and post them all...


                              Comment

                              Working...