here it is:
<cfset dbfields="firstname,lastname,phone,fax,email,address1,address2,city,state,zip">
<cfset dbfields2="sfirstname,slastname,sphone,sfax,semail,saddress1,saddress2,scity,sstate,szip">
<!---- This code was changed to allow for graphic submit buttons --->
<cfif isdefined("form.upper"

>
<!---- <cfif trim(form.action) eq "+"> --->
<cf_addItem
strProdID="#form.id#"
strProdName="#form.name#"
curPrice="#form.price#"
quantity="#form.quantity#"
numWeight="#form.weight#"
>
<!---- <cfelseif trim(form.action) eq "-"> --->
</cfif>
<cfif isdefined("form.downer"

>
<cf_dropItem strProdName="#form.name#">
</cfif>
<html>
<head>
<title>Untitled Document</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
</head>
<body bgcolor="#FFFFFF" text="#000000">
<cfinclude template="checkout_header3.html">
<table width="100%" border="0">
<tr>
<td width="125" valign="top">
<cfinclude template="checkout_leftborder.cfm"></td>
<td width="796" valign="top">
<table width="80%" border="0" align="center">
<tr>
<td width="9%"></td>
<td width="66%"><font face="Arial, Helvetica, sans-serif"><b>Click on
the "Submit Edits" button at the bottom of the page when
finished editing.</b></font></td>
<td width="25%"> </td>
</tr>
<tr>
<td width="9%"></td>
<td width="66%"> </td>
<td width="25%"> </td>
</tr>
<tr>
<td width="9%"></td>
<td width="66%"><font face="Arial, Helvetica, sans-serif">Edit Shopping
Cart</font></td>
<td width="25%"> </td>
</tr>
<tr>
<td width="9%" valign="top"></td>
<td width="66%" valign="top">
<table border=1 width=100% cellspacing=1>
<tr bgcolor="#51D89E">
<td colspan=3 align=center><font face="arial" size=4 color=white>Shopping
Cart Contents</font></td>
</tr>
<tr bgcolor="#A6EBCE">
<td><font face="arial" size="2" color="#000000">Product</font></td>
<td width="100"><font face="arial" size="2" color="#000000">Quantity</font></td>
<td align=right><font face="arial" size="2" color="#000000">Price</font></td>
</tr>
<!--- Make sure that the shopping cart structure exists and is the correct format --->
<cfif isdefined("session.cart"

>
<cfif IsStruct(session.cart)>
<!--- Initialize variables --->
<cfset subtotal = 0>
<cfoutput>
<!---
To output the contents, all we're going to do is loop over our cart structure one item at a time --->
<cfloop collection="#session.cart#" item="i">
<!--- This is the workhorse that will output the item info --->
<cfset subtotal = subtotal + (session.cart
[4] * session.cart[3])>
<tr>
<td valign=top><font face="arial" size=2>#session.cart[2]#</font></td>
<!--- This is the original show cart code
<td valign=top><font face="arial" size=2>#session.cart[4]#</font></td> --->
<!---- This is the modified code created during the checkout counter portion --->
<td valign=top>
<table border=0 width=100%>
<tr>
<td><font face="arial" size=3>#session.cart[4]#</font></td>
<form method="post" action="checkout_edit.cfm">
<input type="hidden" name="upper" value="up">
<input type="hidden" name="name" value="#session.cart[2]#">
<input type="hidden" name="id" value="#session.cart[1]#">
<input type="hidden" name="price" value="#session.cart[3]#">
<input type="hidden" name="weight" value="#session.cart[5]#">
<input type="hidden" name="quantity" value="1">
<input type="hidden" name="cardtype" value="#form.cardtype#">
<input type="hidden" name="cardname" value="#form.cardname#">
<input type="hidden" name="x_Card_Num" value="#form.x_Card_Num#">
<input type="hidden" name="x_Exp_Date" value="#form.x_Exp_Date#">
<input type="hidden" name="totwship" value="#form.totwship#">
<input type="hidden" name="total" value="#form.total#">
<input type="hidden" name="shipcost" value="#form.shipcost#">
<input type="hidden" name="shipping" value="#form.shipping#">
<input type="hidden" name="cartweight" value="#form.cartweight#">
<input type="hidden" name="giftwrapOn" value="#form.giftwrapOn#">
<input type="hidden" name="giftTexton" value="#form.giftTexton#">
<cfif isDefined("form.giftwrapOn"
AND form.giftwrapOn EQ "yes">
<input type="hidden" name="giftStyle" value="#form.giftStyle#">
</cfif>
<cfif isDefined("form.giftTexton"
AND form.giftTexton EQ "yes">
<input type="hidden" name="giftText" value="#form.giftText#">
</cfif>
<cfloop list="#dbfields#" index="i">
<input type="hidden" name="#i#" value="#evaluate(i)#">
</cfloop>
<cfloop list="#dbfields2#" index="i">
<input type="hidden" name="#i#" value="#evaluate(i)#">
</cfloop>
<td align=right>
<input type="image" src="images/plus.gif" name="action2" value=" + ">
</td>
</form>
<form method="post" action="checkout_edit.cfm">
<input type="hidden" name="downer" value="down">
<input type="hidden" name="name" value="#session.cart[2]#">
<input type="hidden" name="id" value="#session.cart[1]#">
<input type="hidden" name="price" value="#session.cart[3]#">
<input type="hidden" name="weight" value="#session.cart[5]#">
<input type="hidden" name="quantity" value="1">
<input type="hidden" name="cardtype" value="#form.cardtype#">
<input type="hidden" name="cardname" value="#form.cardname#">
<input type="hidden" name="x_Card_Num" value="#form.x_Card_Num#">
<input type="hidden" name="x_Exp_Date" value="#form.x_Exp_Date#">
<input type="hidden" name="totwship" value="#form.totwship#">
<input type="hidden" name="total" value="#form.total#">
<input type="hidden" name="shipcost" value="#form.shipcost#">
<input type="hidden" name="shipping" value="#form.shipping#">
<input type="hidden" name="cartweight" value="#form.cartweight#">
<input type="hidden" name="giftwrapOn" value="#form.giftwrapOn#">
<input type="hidden" name="giftTexton" value="#form.giftTexton#">
<cfif isDefined("form.giftwrapOn"
AND form.giftwrapOn EQ "yes">
<input type="hidden" name="giftStyle" value="#form.giftStyle#">
</cfif>
<cfif isDefined("form.giftTexton"
AND form.giftTexton EQ "yes">
<input type="hidden" name="giftText" value="#form.giftText#">
</cfif>
<cfloop list="#dbfields#" index="i">
<input type="hidden" name="#i#" value="#evaluate(i)#">
</cfloop>
<cfloop list="#dbfields2#" index="i">
<input type="hidden" name="#i#" value="#evaluate(i)#">
</cfloop>
<td align=right>
<input type="image" name="action" src="images/minus.gif" value=" - ">
</td>
</form>
</tr>
</table>
</td>
<!---- This is the modified code created during the checkout counter portion --->
<td valign=top align=right><font face="arial" size=2>#dollarformat(session.cart[3])#</font></td>
</tr>
</cfloop>
<cfscript>
// After we've output all of the items in the cart,
// let's calculate some of the derived values we'll need.
// salesTax = subtotal * application.taxrate;
total = subtotal;
</cfscript>
<!--- This is where we print out the summary info that we just calculated --->
<tr>
<td colspan=3><br>
</td>
</tr>
<tr>
<!--- This piece was added during the checkout counter phase --->
<td align=right><font face="arial" size=2>SubTotal</font></td>
<td align=right><font face="arial" size=2>#dollarformat(subtotal)#</font></td>
</tr>
<!--<tr>
<td align=right><font face="arial" size=2>Tax</font></td>
<td align=right><font face="arial" size=2></font></td>
</tr>
<tr>
<td align=right><font face="arial" size=2>Total</font></td>
<td align=right><font face="arial" size=2>#dollarformat(total)#</font></td>
</tr>
-->
</cfoutput>
</cfif>
</cfif>
</table>
</td>
<td width="25%"> </td>
</tr>
<tr>
<td width="9%" valign="top"></td>
<td width="66%" valign="top"> </td>
<td width="25%"> </td>
</tr>
<tr>
<td width="9%" valign="top" height="22"></td>
<!--- this loops through the cart adding each product weight to get total cart weight --->
<cfset cartweight = 0>
<cfloop collection="#session.cart#" item="i">
<cfset cartweight = cartweight + ((session.cart[5]) * (session.cart[4]))>
</cfloop>
<td width="66%" valign="top" height="22"><font face="Arial, Helvetica, sans-serif">Edit
Shipping Options.:</font></td>
<td width="25%" height="22"> </td>
</tr>
<tr>
<td width="9%" valign="top"></td>
<cfform name="form1" method="post" action="cc_info2.cfm">
<td rowspan="4" valign="top">
<table border=0 width=100%>
<tr>
<td colspan=2 bgcolor=#51D89E>
<div align="center"><font size="4" face="arial" color="#FFFFFF">Shipping
Options</font> </div>
</td>
</tr>
<tr>
<td colspan=2>
<table border=0 width=100%><cfoutput>
<tr>
<td align=left width="150"> <font face="arial" size=2>
<input type=radio name="shipping"
<cfif form.shipping EQ "1DA">checked</cfif> value=1DA>
Next Day Air</font></td>
<cf_UPSPrice SERVICE="1DA" FROM="06851" TO="#form.szip#" WEIGHT="#cartweight#">
<cfif isDefined("UPS_Charge"
and UPS_Charge gt 0>
<cfset ndaPrice=#UPS_Charge# + 2>
</cfif>
<td align=left>#DollarFormat(ndaPrice)#</td>
<td align=right rowspan="3"></td>
</tr>
<tr>
<td align=left width="150"><font face="arial" size=2>
<input type=radio name="shipping"
<cfif form.shipping EQ "2DA">checked</cfif>value=2DA>
2nd Day Air</font></td>
<cf_UPSPrice SERVICE="2DA" FROM="06851" TO="#form.szip#" WEIGHT="#cartweight#">
<cfif isDefined("UPS_Charge"
and UPS_Charge gt 0>
<cfset sdaPrice=#UPS_Charge# + 2>
</cfif>
<td align=left>#DollarFormat(sdaPrice)#</td>
</tr>
<tr>
<td align=left width="150"><font face="arial" size=2>
<input type=radio name="shipping"
<cfif form.shipping EQ "3GNDRES">checked</cfif>value=3GNDRES>
Ground </font> </td>
<cf_UPSPrice SERVICE="GNDRES" FROM="06851" TO="#form.szip#" WEIGHT="#cartweight#">
<cfif isDefined("UPS_Charge"
and UPS_Charge gt 0>
<cfset gndPrice=#UPS_Charge# + 2>
</cfif>
<td align=left>#DollarFormat(gndPrice)#</td>
</tr>
</table>
</td>
</tr>
<tr>
<td colspan=2 height="59">
<table border=0 width=100%>
<tr>
<td width="150">
<input type="checkbox" name="giftwrapOn"
<cfif isDefined("form.giftwrapOn"
AND form.giftwrapOn EQ "yes">checked
</cfif>
value="yes">
<font size=2 face=arial>Gift Wrapping</font> </td>
<td bgcolor="orange" width="50">
<input type="radio"
<cfif isDefined("form.giftStyle"
AND form.giftStyle EQ "1">checked
</cfif>name="giftStyle" value=1>
</td>
<td bgcolor="yellow" width="50">
<input type="radio"
<cfif isDefined("form.giftStyle"
AND form.giftStyle EQ "2">checked
</cfif>name="giftStyle" value=2>
</td>
<td bgcolor="red" width="50">
<input type="radio"
<cfif isDefined("form.giftStyle"
AND form.giftStyle EQ "3">checked
</cfif>name="giftStyle" value=3>
</td>
<td bgcolor="green" width="50">
<input type="radio"
<cfif isDefined("form.giftStyle"
AND form.giftStyle EQ "4">checked
</cfif>name="giftStyle" value=4>
</td>
<td> </td>
<td> </td>
</tr>
<tr>
<td width="150"> </td>
<td bgcolor="blue" width="50">
<input type="radio"
<cfif isDefined("form.giftStyle"
AND form.giftStyle EQ "5">checked
</cfif>name="giftStyle" value=5>
</td>
<td bgcolor="aqua" width="50">
<input type="radio"
<cfif isDefined("form.giftStyle"
AND form.giftStyle EQ "6">checked
</cfif>name="giftStyle" value=6>
</td>
<td bgcolor="purple" width="50">
<input type="radio"
<cfif isDefined("form.giftStyle"
AND form.giftStyle EQ "7">checked
</cfif>name="giftStyle" value=7>
</td>
<td width="50"> </td>
<td> </td>
<td> </td>
</tr>
</table>
</td>
</tr>
<tr>
<td colspan=2>
<table border=0 width=100%>
<tr>
<td valign=top width="150">
<input type="checkbox"
<cfif isDefined("form.giftText"
AND form.giftText NEQ "">
checked</cfif> name="giftTexton" value="yes">
<font size=2 face=arial>Gift Card Text</font> </td>
<td align=left>
<textarea cols=34 rows=5 name="giftText">
<cfif isDefined("form.giftText"
AND form.giftText NEQ "">
#form.giftText#</cfif>
</textarea>
</td>
</tr></cfoutput>
<cfoutput>
<input type="hidden" name="cartweight" value="#cartweight#">
<input type="hidden" name="ndaPrice" value="#ndaPrice#">
<input type="hidden" name="sdaPrice" value="#sdaPrice#">
<input type="hidden" name="gndPrice" value="#gndPrice#">
<input type="hidden" name="total" value="#total#">
</cfoutput>
<!---<cfoutput query="qGetOrderID">
<input type="hidden" name="orderid" value="#order_ID#">
</cfoutput>--->
<tr> <cfoutput>
<cfloop list="#dbfields#" index="i">
<input type="hidden" name="#i#" value="#evaluate(i)#">
</cfloop>
<cfloop list="#dbfields2#" index="i">
<input type="hidden" name="#i#" value="#evaluate(i)#">
</cfloop>
</cfoutput>
<td valign=top width="150"> </td>
<td align=right> </td>
</tr>
</table>
</td>
</tr>
</table>
<font face="Arial, Helvetica, sans-serif">Edit Billing Info: </font>
<table border=0 width=100%>
<tr bgcolor="#51D89E">
<td colspan=2>
<div align="center"><font face='arial' size=2><font color="#FFFFFF" size="4">Bill
To</font></font></div>
</td>
</tr>
<cfoutput>
<tr>
<td><font face="arial" size="1" color="##FF0000"><b>Firstname</b></font></td>
<td>
<cfinput type="Text" name="firstname"
message="Please Enter firstname"
required="Yes"
size="15"
maxlength="25"
value="#form.firstname#">
</td>
</tr>
<tr>
<td><font face="arial" size="1" color="##FF0000"><b>Lastname</b></font></td>
<td>
<cfinput type="Text"
name="lastname"
message="Please enter last name"
required="Yes"
size="15"
maxlength="25"
value="#form.lastname#">
</td>
</tr>
<tr>
<td><font face="arial" size=1><b><font color="##FF0000">Phone</font></b></font></td>
<td>
<cfinput type="Text"
name="phone"
message="Please enter billing phone with area code."
validate="telephone"
required="Yes"
size="15"
maxlength="25"
value="#form.phone#">
</td>
</tr>
<tr>
<td><font face="arial" size=1>Fax</font></td>
<td>
<input type="text" name="fax" size="15" maxlength="25"
<cfif isDefined("form.fax"
>value="#form.fax#"</cfif>>
</td>
</tr>
<tr>
<td><font face="arial" size="1" color="##FF0000"><b>Email</b></font></td>
<td>
<cfinput type="Text"
name="email"
message="Please enter billing email address"
required="Yes"
size="23"
maxlength="35"
value="#form.email#">
</td>
</tr>
<tr>
<td><font face="arial" size="1" color="##FF0000"><b>Address1</b></font></td>
<td>
<cfinput type="Text"
name="address1"
message="Please enter billing address."
required="Yes"
size="15"
maxlength="25"
value="#form.address1#">
</td>
</tr>
<tr>
<td><font face="arial" size=1>Address2</font></td>
<td>
<input type="text" name="address2" size="15" maxlength="25"
<cfif isDefined("form.address2"
>value="#form.address2#"</cfif>>
</td>
</tr>
<tr>
<td><font face="arial" size="1" color="##FF0000"><b>City</b></font></td>
<td>
<cfinput type="Text"
name="city"
message="Please enter billing city."
required="Yes"
size="15"
maxlength="25"
value="#form.city#">
</td>
</tr>
<tr>
<td><font face="arial" size="1" color="##FF0000"><b>State</b></font></td>
<td>
<cfinput type="Text"
name="state"
message="Please enter billing state."
required="Yes"
size="2"
maxlength="2"
value="#form.state#">
</td>
</tr>
<tr>
<td><font face="arial" size="1" color="##FF0000"><b>Zip</b></font></td>
<td>
<cfinput type="Text"
name="zip"
message="Please enter billing ZIP code."
validate="zipcode"
required="Yes"
size="10"
maxlength="10"
value="#form.zip#">
</td>
</tr>
</cfoutput>
</table>
<font face="Arial, Helvetica, sans-serif">Edit Shipping Info.: </font>
<cfoutput>
<table border=0 width=100%>
<tr bgcolor="##51D89E">
<td colspan="2">
<div align="center"><font face="arial" size="4" color="##FFFFFF">Ship
To</font> </div>
</td>
</tr>
<tr>
<td><font face="arial" size=1>Firstname</font></td>
<td>
<input type="text" name="sfirstname" size="15"
<cfif isDefined("form.sfirstname"
>value="#form.sfirstname#"</cfif> maxlength="25">
</td>
</tr>
<tr>
<td><font face="arial" size=1>Lastname</font></td>
<td>
<input type="text" name="slastname" size="15"
<cfif isDefined("form.slastname"
>value="#form.slastname#"</cfif> maxlength="25">
</td>
</tr>
<tr>
<td><font face="arial" size=1>Phone</font></td>
<td>
<input type="text" name="sphone" size="15"
<cfif isDefined("form.sphone"
>value="#form.sphone#"</cfif> maxlength="25">
</td>
</tr>
<tr>
<td><font face="arial" size=1>Fax</font></td>
<td>
<input type="text" name="sfax" size="15"
<cfif isDefined("form.sfax"
>value="#form.sfax#"</cfif> maxlength="25">
</td>
</tr>
<tr>
<td><font face="arial" size=1>Email</font></td>
<td>
<input type="text" name="semail" size="15"
<cfif isDefined("form.semail"
>value="#form.semail#"</cfif> maxlength="35">
</td>
</tr>
<tr>
<td><font face="arial" size="1" color="##FF0000"><b>Address1</b></font></td>
<td>
<cfinput type="Text"
name="saddress1"
message="Please input a shipping address."
required="Yes"
size="15"
value="#form.saddress1#"
maxlength="25">
</td>
</tr>
<tr>
<td><font face="arial" size=1>Address2</font></td>
<td>
<input type="text" name="saddress2" size="15"
<cfif isDefined("form.saddress2"
>value="#form.saddress2#"</cfif> maxlength="25">
</td>
</tr>
<tr>
<td><font face="arial" size="1" color="##FF0000"><b>City</b></font></td>
<td>
<cfinput type="Text"
name="scity"
message="Please indicate city to ship to."
required="Yes"
size="15"
value="#form.scity#"
maxlength="25">
</td>
</tr>
<tr>
<td><font face="arial" size="1" color="##FF0000"><b>State</b></font></td>
<td>
<cfinput type="Text"
name="sstate"
message="Please indicate state to ship to."
required="Yes"
size="2"
value="#form.sstate#"
maxlength="2">
</td>
</tr>
<tr>
<td><font face="arial" size="1" color="##FF0000"><b>Zip</b></font></td>
<td>
<cfinput type="Text"
name="szip"
message="Please indicate ZIP code to ship to."
validate="zipcode"
required="Yes"
size="15"
value="#form.szip#"
maxlength="25">
</td>
</tr>
</table>
</cfoutput>
<font face="Arial, Helvetica, sans-serif">Edit Credit Card Info:
</font><br>
<table width="100%" border="0">
<tr bgcolor="#51D89E">
<td colspan="2" valign="top">
<div align="center"><font face="Arial, Helvetica, sans-serif" size="4" color="#FFFFFF">Credit
Card Information: </font></div>
</td>
</tr>
<tr>
<td width="139" valign="top"><font face="Arial, Helvetica, sans-serif" size="2"><b>Card
Type:</b></font></td>
<td width="131">
<input type=radio name="cardtype"
<cfif form.cardtype EQ "Visa">checked</cfif> value=Visa>
Visa<br>
<input type=radio name="cardtype"
<cfif form.cardtype EQ "MasterCard">checked</cfif> value=MasterCard>
MasterCard<br>
<input type=radio name="cardtype"
<cfif form.cardtype EQ "Discover">checked</cfif>value=Discover>
Discover </td>
</tr>
<tr>
<td width="139"><b><font face="Arial, Helvetica, sans-serif" size="2">Card
No.:</font></b></td>
<td width="131">
<cfinput type="Text"
name="x_Card_Num"
value="#form.x_Card_Num#"
message="Please enter valid credit card number."
validate="creditcard"
required="Yes"
size="16"
maxlength="20">
</td>
</tr>
<tr>
<td width="139"><font size="2" face="Arial, Helvetica, sans-serif"><b>Name
on Card:</b></font></td>
<td width="131">
<cfinput type="Text"
name="cardname"
value="#form.cardname#"
message="Please enter name as it appears on card."
required="Yes"
size="20"
maxlength="30">
</td>
</tr>
<tr>
<td width="139"><font size="2" face="Arial, Helvetica, sans-serif"><b>Exp.
Date (mm/yy):</b></font></td>
<td width="131">
<cfinput type="Text"
name="x_Exp_Date"
value="#form.x_Exp_Date#"
message="Please enter expiration date as mm/yy."
required="Yes"
size="5"
maxlength="5">
</td>
</tr>
<tr>
<td width="139"> <cfoutput>
<input type="hidden" name="total" value="#total#">
<input type="hidden" name="cartweight" value="#cartweight#">
<input type="submit" name="Submit_Edits" value="Submit_Edits">
</cfoutput> </td>
<td width="131"> </td>
</tr>
</table>
</td>
</cfform>
<td width="25%"> </td>
</tr>
<tr>
<td width="9%"> </td>
<td width="25%"> </td>
</tr>
<tr>
<td width="9%"> </td>
<td width="25%"> </td>
</tr>
<tr>
<td width="9%"> </td>
<td width="25%"> </td>
</tr>
<tr>
<td width="9%"> </td>
<td width="66%"> </td>
<td width="25%"> </td>
</tr>
</table>
<br>
</td>
</tr>
</table>
</body>
</html>