function viewCart(){    document.viewcart.submit();}function trim(stringToTrim) {
	return stringToTrim.replace(/^\s+|\s+$/g,"");
}function addCart_GiftCertDollarAmt(){        document.addcart.add.value = "1";    document.addcart.cmd.value = "_cart";    document.addcart.business.value = "brad@gcom-inc.com";    document.addcart.item_name.value = "Basali Gift Certificate for Dollar Amount Package";    document.addcart.item_number.value = "1007";        document.addcart.shipping.value = "0.00";    document.addcart.no_shipping.value = "0";    document.addcart.no_note.value = "1";    document.addcart.currency_code.value = "USD";    document.addcart.tax.value = "0.00";    document.addcart.weight.value = "0";    document.addcart.weight_unit.value = "lbs";    document.addcart.lc.value = "US";    document.addcart.bn.value = "PP-ShopCartBF";        var strDollarAmount = document.dollar.dollaramt.value;        if ((parseInt(document.dollar.dollaramt.value) > 0) && (trim(strDollarAmount) != "")) {        document.addcart.amount.value = document.dollar.dollaramt.value;        document.addcart.submit();    }else{        alert("Please enter a valid dollar amount before adding this item to your cart.");    }}function addCart_SigGiftPackage(){        document.addcart.add.value = "1";    document.addcart.cmd.value = "_cart";    document.addcart.business.value = "brad@gcom-inc.com";    document.addcart.item_name.value = "Basali Signature Gift Signature Package";    document.addcart.item_number.value = "1008";    document.addcart.amount.value = "125.00";    document.addcart.shipping.value = "0.00";    document.addcart.no_shipping.value = "0";    document.addcart.no_note.value = "1";    document.addcart.currency_code.value = "USD";    document.addcart.tax.value = "0.00";    document.addcart.weight.value = "0";    document.addcart.weight_unit.value = "lbs";    document.addcart.lc.value = "US";    document.addcart.bn.value = "PP-ShopCartBF";    document.addcart.submit();}function addCart_SpaSamplerGiftPackage(){        document.addcart.add.value = "1";    document.addcart.cmd.value = "_cart";    document.addcart.business.value = "brad@gcom-inc.com";    document.addcart.item_name.value = "Basali Spa Sampler Gift Certificate Package";    document.addcart.item_number.value = "1009";    document.addcart.amount.value = "230.00";    document.addcart.shipping.value = "0.00";    document.addcart.no_shipping.value = "0";    document.addcart.no_note.value = "1";    document.addcart.currency_code.value = "USD";    document.addcart.tax.value = "0.00";    document.addcart.weight.value = "0";    document.addcart.weight_unit.value = "lbs";    document.addcart.lc.value = "US";    document.addcart.bn.value = "PP-ShopCartBF";    document.addcart.submit();}function addCart_MediSpaSamplerGiftPackage(){        document.addcart.add.value = "1";    document.addcart.cmd.value = "_cart";    document.addcart.business.value = "brad@gcom-inc.com";    document.addcart.item_name.value = "Basali MediSpa Sampler Gift Certificate Package";    document.addcart.item_number.value = "1010";    document.addcart.amount.value = "500.00";    document.addcart.shipping.value = "0.00";    document.addcart.no_shipping.value = "0";    document.addcart.no_note.value = "1";    document.addcart.currency_code.value = "USD";    document.addcart.tax.value = "0.00";    document.addcart.weight.value = "0";    document.addcart.weight_unit.value = "lbs";    document.addcart.lc.value = "US";    document.addcart.bn.value = "PP-ShopCartBF";    document.addcart.submit();}function addCart_MediSpaMembershipGiftCertificate(){        document.addcart.add.value = "1";    document.addcart.cmd.value = "_cart";    document.addcart.business.value = "brad@gcom-inc.com";    document.addcart.item_name.value = "Basali MediSpa Membership Gift Certificate";    document.addcart.item_number.value = "1011";        for (var i=0; i < document.rblSingleDouble.myRadio.length; i++)  {         if (document.rblSingleDouble.myRadio[i].checked){            document.addcart.amount.value = document.rblSingleDouble.myRadio[i].value;        }    }        document.addcart.shipping.value = "0.00";    document.addcart.no_shipping.value = "0";    document.addcart.no_note.value = "1";    document.addcart.currency_code.value = "USD";    document.addcart.tax.value = "0.00";    document.addcart.weight.value = "0";    document.addcart.weight_unit.value = "lbs";    document.addcart.lc.value = "US";    document.addcart.bn.value = "PP-ShopCartBF";    document.addcart.submit();}function addCart_MembershipApplyNow(){        document.addcart.add.value = "1";    document.addcart.cmd.value = "_cart";    document.addcart.business.value = "brad@gcom-inc.com";    document.addcart.item_name.value = "Basali Membership";    document.addcart.item_number.value = "1012";    document.addcart.amount.value = "175.00";    document.addcart.shipping.value = "0.00";    document.addcart.no_shipping.value = "0";    document.addcart.no_note.value = "1";    document.addcart.currency_code.value = "USD";    document.addcart.tax.value = "0.00";    document.addcart.weight.value = "0";    document.addcart.weight_unit.value = "lbs";    document.addcart.lc.value = "US";    document.addcart.bn.value = "PP-ShopCartBF";    document.addcart.submit();}