// NebuCart - The JavaScript Shopping Cart
// E-Commerce YOUR way
// by Nebulus Designs
//
// Copyright 1999-2001 all rights reserved.

// None of this script may be redistributed or sold
// without the authors express consent.
// Violations of copyright will be prosecuted.

// If you would like to use NebuCart,
// email us at nebucart@nebulus.org
// or visit http://nebucart.nebulus.org

// ********************************************
// NebuCart User Defined Settings             *
// ********************************************
// Cart variables - you edit these to taste   *
// ********************************************

// set your company information here. This will all
// generated on the printable form
// Default settings are for Nebulus Designs
var myName      = 'Bridle - Country Stufs';
var mySite      = 'http://www.bridle.com.br';
var myEmail     = 'sac@bridle.com.br';
var myPhone     = '(11) 3685-3251';
var myAddress   = 'Rua Gasparino Lunardi, 253';
var myCityState = 'Osasco, SP';
var myZip       = '06110-260';
var myCountry   = 'Brasil';
var myLogo      = '';

var myStoreName = 'RN';

var unsecureDomain = '.bridle.com.br';
var secureDomain   = '.bridle.com.br';

var cookiePath     = '/';

var customerTime = 'setExp(0,0,0,0,0,2,0)';
var cartTime     = 'setExp(0,0,1,0,0,0,0)';

var supressCart  = false;

var fontFace = 'Verdana,Arial,Helvetica';

var cartHeader    = '#22354C';
var cartRow1      = '#D1E4F8';
var cartRow2      = '#AEC7E1';
var cartTaxRow    = '#FFFFFF';
var cartShipRow   = '#FFFFFF';
var cartSubRow    = '#FFFFFF';
var cartTotalRow  = '#FFFFFF';
var cartBorder    = 0;
var cartCellSpace = 1;
var cartCellPad   = 2;

var currency = 'R$';

var getAltShipping = false;

var stateTax = '.0';

var myState1 = 'sp';
var myState2 = 'sao paulo';

var shipAmt = '0';
var shipPercent = false;

var shipPerItem = false;

var useShipOptions = false;

var useShipRules = false;

var shipOptions = new Array(
);

var myShipRules = new Array(
);

var cardOption = new Array(
);

var usePrint = false;

// set whether you want to allow CGI or ASP form based order submission.
// default is true
var useForm = true;

// set whether you want to allow the
var useGateway = false;

// set wether you want to allow customers the option to use
// unsecure order submission (not including printable forms)
// if useSecure is false and/or you're missing your secure
// page settings, the cart defaults to unsecure ordering
var useUnsecure = true;

// set whether you want to allow secure order submission.
// default is true
var useSecure = false;

var cartPage = 'cart.html';

var COstep1 = 'customer_data.html';

// the last step for printing an order form (verify address, etc.)
var COprintVerify = 'printverify.html';

var COprint = 'printorder.html';

var COform = 'formorder.html';

// the page that will build the form data
// for credit card validation
// through your merchant account
// this will post to the unsecure form handler
// defined by 'unsecureGatewayAction'
var COgateway = '';

var COsecureForm = '';

var COsecureGateway = '';

// set CGI/ASP Post Action path (non-secure)
// if you aren't using CGI/ASP submission, then set to ""
var unsecurePostAction = 'http://www18.locaweb.com.br/scripts/FormMail.pl';

// set the Post Action for your particular
// credit card gateway processor
// see your processor documentation for this address
var unsecureGatewayAction = 'thanks.asp';

var securePostAction = '';

var secureGatewayAction = '';

var securePath = '';

var extraFormTags = new Array(

"<input type=hidden name=recipient value=\"sac\@bridle.com.br\">",
"<input type=hidden name=subject value=\"Pedido Online\">",
"<input type=hidden name=redirect value=\"http://www.bridle.com.br/loja/thanks.html\">"
);

var cgiMailField = '';

// Shipping Rule Object - Do not edit
function shipRule(amtLbound,amtUbound,qtyLbound,qtyUbound,shipCost,percent,countries,applyDomestic){
	this.amtLbound     = amtLbound;
	this.amtUbound     = amtUbound;
	this.qtyLbound     = qtyLbound;
	this.qtyUbound     = qtyUbound;
	this.shipCost      = shipCost;
	this.percent       = percent;
	this.countries     = countries;
	this.applyDomestic = applyDomestic
}