Applet: uShopOrderButton2

Description:
The uShopOrderButton2 applet is a button that allows customers to begin the order process. Parameters allow you to configure some of the shopping cart preferences and labels. This applet is identical to the uShopOrderButton - except it appears as a standard button instead of using a configurable image.

Example:


<APPLET CODE="uShopOrderButton2.class" CODEBASE="../classes/" WIDTH=150 HEIGHT=35>
<PARAM NAME="label"                        VALUE="Begin Order Process">
<PARAM NAME="instructions"                 VALUE="Please take a moment to review the contents of your 
                                                  shopping cart. Press <B>BACK</B> to make changes or 
                                                  press <B>CONTINUE</B> to continue with the order process.">
<PARAM NAME="continue_button_label"        VALUE=" Continue ">
<PARAM NAME="continue_button_instructions" VALUE="Click here to <B>Continue</B> the order process.">
<PARAM NAME="back_button_label"            VALUE="  << Back  ">
<PARAM NAME="back_button_instructions"     VALUE="Click here to <B>Go Back</B> and make changes to your order.">
<PARAM NAME="cart_font"                    VALUE="Verdana,Arial,Helvetica">
<PARAM NAME="cart_font_color"              VALUE="#000000">
<PARAM NAME="cart_background_color"        VALUE="#FFFFFF">
<PARAM NAME="cart_title_color"             VALUE="#B3D9FF">
<PARAM NAME="cart_title_font_color"        VALUE="#000000">
<PARAM NAME="script_url"                   VALUE="https://www.uburst.com/cgi-bin/ushop/ushop_italian.pl">
</APPLET>


Parameters:

Name Description
codebase This parameter is actually part of the <APPLET> tag and therefore should be specified on the first line of the Applet (see example). It allows you to specify the location of this applet's class file. The recommended value is "../classes/". See codebase for more information.
label The label that will appear on the order button. Typical values might be "Begin Order Process" or "Checkout".
target This parameter allows you to specify the "target" for the review cart page. The default value of this parameter is "_top".
cart_font The font that will be used for the shopping cart that is displayed on your final order pages. (This is not to be confused with the font in the uShopCart applets - that font is controlled by the individual applets). For this parameter, you can specify any standard HTML fonts such as "Arial", "Helvetica", etc. You can also specify this parameter with default fonts such as "Verdana,Arial,Helvetica". The default value is "Verdana,Arial,Helvetica".
cart_font_color The font color of the text that will be used for the shopping cart that is displayed on your final order pages. (This is not to be confused with the font color in the uShopCart applets - that color is controlled by the individual applets). For this parameter, you can specify any standard HTML-formatted colors such as "#000000" for black or "#0000FF" for blue. The default value is "#000000".
cart_background_color The background color that will be used for the shopping cart that is displayed on your final order pages. (This is not to be confused with the background color in the uShopCart applets - that color is controlled by the individual applets). For this parameter, you can specify any standard HTML-formatted colors such as "#FFFFFF" for white (recommended). The default value is "#000000".
cart_title_color The color that will be used in the column titles of the shopping cart that is displayed on your final order pages. For this parameter, you can specify any standard HTML-formatted colors such as "#D0D0D0" for light gray or "#FFFFFF" for white. The default value is "#B3D9FF" (a light blue - to match the default colors in the example order templates).
cart_title_font_color The color that will be used for the font in the column titles of the shopping cart that is displayed on your final order pages. For this parameter, you can specify any standard HTML-formatted colors such as "#D0D0D0" for light gray or "#FFFFFF" for white. The default value is "#000000" (a light blue - to match the default colors in the example order templates).
cart_show_id This parameter lets you specify whether to show the product IDs in the shopping cart that is displayed on your final order pages. Valid values are "YES" or "NO". The default value is "YES".
cart_show_name This parameter lets you specify whether to show the product Names in the shopping cart that is displayed on your final order pages. Valid values are "YES" or "NO". The default value is "YES".
cart_show_description This parameter lets you specify whether to show the product Descriptions in the shopping cart that is displayed on your final order pages. Valid values are "YES" or "NO". The default value is "YES".
cart_show_weight This parameter lets you specify whether to show the product Weights in the shopping cart that is displayed on your final order pages. Valid values are "YES" or "NO". The default value is "YES".
cart_show_quantity This parameter lets you specify whether to show the product Quantities in the shopping cart that is displayed on your final order pages. Valid values are "YES" or "NO". The default value is "YES".
cart_show_price This parameter lets you specify whether to show the product Prices in the shopping cart that is displayed on your final order pages. Valid values are "YES" or "NO". The default value is "YES".
cart_show_totals This parameter lets you specify whether to show the product Totals in the shopping cart that is displayed on your final order pages. Valid values are "YES" or "NO". The default value is "YES".
instructions This parameter allows you to specify the instructions that will appear on the review cart page. A typical value for this parameter might be:

"Please take a moment to review the contents of your shopping cart."

Note that you can use HTML tags in this string to make certain words bold or italicized. Just don't use any double-quotes inside this string.
continue_button_label This parameter allows you to specify the text that will appear on the "Continue" button's label. (The "Continue" button appears on the bottom of the review cart page). The default value for this parameter is " Continue ".
continue_button_instructions This parameter allows you to specify the instructions that will be displayed next to the "Continue" button. A typical value for this parameter is:

"Click here to <B>continue</B>."

Note that you can use HTML tags in this string to make certain words bold or italicized. Just don't use any double-quotes inside this string.
back_button_label This parameter allows you to specify the text that will appear on the "Back" button's label. (The "Back" button appears on the bottom of the review cart page). The default value for this parameter is " << Back ".
back_button_instructions This parameter allows you to specify the instruction that will be displayed next to the "Back" button. A typical value for this parameter is:

"Click here to <B>go back</B> and make changes to your order."

Note that you can use HTML tags in this string to make certain words bold or italicized. Just don't use any double-quotes inside this string.
script_url This parameter allows you to specify the full URL of the ushop CGI script on your secure server. An example value for this parameter is:

"https://www.uburst.com/cgi-bin/ushop/ushop.pl"