<% ' Comersus 3.90 Sophisticated Cart ' Developed by CopyRight Rodrigo S. Alhadeff ' March-2002 ' Open Source License can be found at documentation/readme.txt ' http://www.comersus.com ' Details: settings of the store %> <% ' Important note about true/false settings ' True=-1 False=0 ' storeFront Version (don't change this) private const pStoreFrontVersion = "3.90" ' storeFront demo mode (for testing and demo purposes) private const pStoreFrontDemoMode = 0 ' company data private const pCompany = "Greencastle Soap" private const pCompanyAddress = "203 N. Stone" private const pCompanyZip = "99202" private const pCompanyCity = "Spokane" private const pCompanyStateCode = "WA" private const pCompanyCountryCode = "US" private const pCompanyPhone ="800.350.6610" private const pCompanyEmail = "sandy@greencastlesoap.com" private const pCompanyLogo = "" ' user can add X times products to the shopping basket private const pCartQuantityLimit = 30 ' maximum quantity that can be added to the cart for any product private const pMaxAddCartQuantity = 30 ' this prefix will be used in front of order number private const pOrderPrefix = "200" ' this prefix will be used in front of customer number private const pCustomerPrefix = "550" ' email address of store owner private const pEmailAdmin = "sandy@greencastlesoap.com" 'private const pEmailAdmin = "carl@civicmindmedia.com" ' check that you are using an emailSender (FROM address) that can send emails through the SMTP server without Relay troubles private const pEmailSender = "admin@snapmediaworks.com" ' you can use localhost or external SMTP server like mail.something.com private const pSmtpServer = "recluse.as26286.net" ' if your store is not sending emails set to true to display the email errors private const pDebugEmail = 0 ' send email at save order step private const pSendCustomerEmailSOStep = -1 ' emailComponent, options are Jmail, ServerObjectsASPMail1, ServerObjectsASPMail2, PersitsASPMail and CDONTS ' ServerObjectsASPMail1 is for SMTPsvg.mail component and 2 is for SMTPsvg.Mailer component private const pEmailComponent = "PersitsASPMail" ' database (Access, SQLServer) pDataBase = "Access" ' id (only if you use several Comersus Store in the same hosting) private const pIdStore = "" ' shows stock limit availability private const pNoStockAvoidAdding = 0 ' show stock number in product view private const pShowStockView = 0 private const pCurrencySign = "$" private const pDecimalSign = "." ' Used to display specific date format on screen, otherwise "MM/DD/YY" private const pDateFormat = "MM/DD/YY" ' Default language (new for 3.90) private const pDefaultLanguage = "english" ' if set to false Comersus will not allow separate shipping address (only billing will be used) private const pUseShippingAddress = -1 ' let user choose the password or autogenerate private const pRandomPassword = 0 ' minimum purchase total price, 0: disabled private const pMinimumPurchase = 2 ' force to select optionals before adding private const pForceSelectOptionals = -1 ' allow new customer registration at checkout time private const pAllowNewCustomer = -1 ' store URL location private const pStoreLocation = "www.greencastlesoap.com/comersus/store" ' encryption Password for RC4. If you change the key after using Comersus ' all previous passwords and CC data cannot be decrypted 'private const pEncryptionPassword ="HGSDYGDSLWREIUCJD938439402342" private const pEncryptionPassword ="JJGTYRRETTTGHCJDF873641200176" ' wish lists enabled private const pWishList = 0 ' index page counter, you can disable for performance reasons private const pIndexVisitsCounter = -1 ' show the BtoB price in details and listing private const pShowBtoBPrice = 0 ' StoreNews private const pStoreNews = 0 ' Encrypted Total for gateways private const pUseEncryptedTotal = -1 '''''''''''''''''''''''''''''''''''''''''''''''''''''''' ' Optional Packages settings ' Note: if you dont have the optional packages, set 0 for ' individual setting and 0 for pStoreFrontDemoMode ' That will disable the links '''''''''''''''''''''''''''''''''''''''''''''''''''''''' ' Fraud prevention settings, options: paranoid, caution, none private const pFraudPreventionSetting = "caution" ' Random Product private const pRandomProduct = 0 ' Forgot Password private const pForgotPassword = 0 ' BestSellers private const pListBestSellers = 0 ' Related products available private const pRelatedProducts = 1 private const pGetRelatedProductsLimit = 0 ' Product reviews available private const pProductReviews = 1 ' Email to a friend private const pEmailToFriend = 1 ' Newsletter private const pNewsLetter = 1 ' Auctions private const pAuctions = 0 ' RealTime UPS private const pRealTimeUps = -1 private const pUpsDefaultFee = 60 private const pUpsDefaultServiceType = "UPS Shipment" ' RealTime Fedex private const pRealTimeFedex = 0 %> <% ' Comersus 3.90 Sophisticated Cart ' Developed by CopyRight Rodrigo S. Alhadeff ' March-2002 ' Open Source License can be found at documentation/readme.txt ' http://www.comersus.com ' Details: misc currency functions %> <% function money(number) ' round number money = round(number,2) if pDecimalSign="," then ' replace . by , money = replace(money,".",",") else ' replace , by . money = replace(money,",",".") end if ' locate dec division indexPoint = instr(money, pDecimalSign) ' for integer, add .00 if indexPoint=0 then money = Cstr(money)+pDecimalSign+"00" end if ' calculate if 0 or 00 moneyLarge = len(money) decPart = right(money,moneyLarge-indexPoint) ' add to original numbers for g=0 to (1- (moneyLarge-indexPoint)) money = Cstr(money)+"0" next end function %> <% ' Comersus 3.90 Sophisticated Cart ' Developed by CopyRight Rodrigo S. Alhadeff ' March-2002 ' Open Source License can be found at documentation/readme.txt ' http://www.comersus.com ' Details : language package, contains email & screen messages %> <% ' if default language lost if session("language")="" then session("language")="english" end if dim dictLanguage set dictLanguage = CreateObject("Scripting.Dictionary") ' english dictLanguage.Add "english_viewitem_1", "You must specify the item id." dictLanguage.Add "english_viewitem_2", "The item does not exist. Please " dictLanguage.Add "english_viewitem_3", "Price " dictLanguage.Add "english_viewitem_4", "You save " dictLanguage.Add "english_viewitem_5", "Buy" dictLanguage.Add "english_viewitem_6", "Additional Options" dictLanguage.Add "english_viewitem_7", "No stock at the moment. Please

" dictLanguage.Add "english_viewitem_8", "Read reviews" dictLanguage.Add "english_viewitem_9", "Write a review" dictLanguage.Add "english_viewitem_10", "View also: " dictLanguage.Add "english_viewitem_11", "Optional Power Pack is not installed. More information at http://store.comersus.com" dictLanguage.Add "english_viewitem_12", "Add to wish list" dictLanguage.Add "english_viewitem_13", "You are at " dictLanguage.Add "english_viewitem_14", "e-mail to a friend" dictLanguage.Add "english_viewitem_15", "BtoB Price" dictLanguage.Add "english_viewitem_16", "(!) This product has discounts per quantity" dictLanguage.Add "english_viewitem_17", "(!) Get this product for less. " dictLanguage.Add "english_viewitem_18", "Auctions available. " dictLanguage.Add "english_viewitem_19", "Current stock: " dictLanguage.Add "english_viewitem_20", "Rated as " dictLanguage.Add "english_viewitem_21", "Not rated yet" dictLanguage.Add "english_viewitem_22", "View also this related products" dictLanguage.Add "english_viewitem_23", "Cannot add to the cart since we have no stock. Please

" dictLanguage.Add "english_searchitem_1", "You must enter search criteria. Please

" dictLanguage.Add "english_searchitem_2", "No items to display. Please

" dictLanguage.Add "english_searchitem_3", "Search criteria: " dictLanguage.Add "english_searchitem_4", "Page " dictLanguage.Add "english_searchitem_5", " of " dictLanguage.Add "english_additem_1", "Please enable cookies in your Browser to use this system.

" dictLanguage.Add "english_additem_2", "Too many items in your cart. Please delete at least one in order to continue.

" dictLanguage.Add "english_additem_3", "The item doesn't exist in the database.

" dictLanguage.Add "english_additem_4", "Item options not available.

" dictLanguage.Add "english_additem_5", "Session lost. All data was reloaded. Please try again. If you get this message again check that you have Cookies enabled in your browser.

" dictLanguage.Add "english_additem_6", "You cannot add that quantity due to store settings.

" dictLanguage.Add "english_additem_7", "This item requires that you select from the list of options.

Please return and select from the drop down box.

" dictLanguage.Add "english_showcart_1", "Your shopping basket is empty.

" dictLanguage.Add "english_showcart_2", "Please enter numbers greater than zero.

" dictLanguage.Add "english_showcart_3", "Your baskent contains:" dictLanguage.Add "english_showcart_4", "Quantity" dictLanguage.Add "english_showcart_5", "Item #" dictLanguage.Add "english_showcart_6", "Description" dictLanguage.Add "english_showcart_7", "Options" dictLanguage.Add "english_showcart_8", "Price" dictLanguage.Add "english_showcart_9", "Actions" dictLanguage.Add "english_showcart_10", "Remove" dictLanguage.Add "english_showcart_11", "Recalculate" dictLanguage.Add "english_showcart_12", "Total: " dictLanguage.Add "english_showcart_13", "Tax not included" dictLanguage.Add "english_showcart_14", "Continue Shopping..." dictLanguage.Add "english_showcart_15", "Checkout to make your purchase..." dictLanguage.Add "english_showcart_16", "Estimated delivery time: " dictLanguage.Add "english_showcart_17", " day/s" dictLanguage.Add "english_showcart_18", " same day" dictLanguage.Add "english_showcart_19", " undetermined" dictLanguage.Add "english_itemdetailsm_1", "Price" dictLanguage.Add "english_itemdetailsm_2", " ~ You save " dictLanguage.Add "english_itemdetailsm_3", " Add" dictLanguage.Add "english_itemdetailsm_4", "BtoB Price" dictLanguage.Add "english_itemdetailsm_5", "View Product Detail >>" dictLanguage.Add "english_itemdetailsm_6", "Continue to Select Options >>" ' CivicMindMedia.com mod. 3/31/02 dictLanguage.Add "english_checkout_1", "Your basket is empty, you cannot checkout.

" dictLanguage.Add "english_checkout_2", "If it's your first time in this store " dictLanguage.Add "english_checkout_3", "click here..." dictLanguage.Add "english_checkout_4", "If you are a returning buyer enter the following data" dictLanguage.Add "english_checkout_5", "Send" dictLanguage.Add "english_checkout_6", "Forgot your password?" dictLanguage.Add "english_checkout_7", "Checkout" dictLanguage.Add "english_checkout_8", "E-mail" dictLanguage.Add "english_checkout_9", "Password" dictLanguage.Add "english_checkout_10", "You can't checkout. This store has a minimum purchase of " dictLanguage.Add "english_formfirstbuy_1", "Your basket is empty, you cannot checkout.

" dictLanguage.Add "english_orderform_1", "Please enter your name" dictLanguage.Add "english_orderform_2", "Please enter your ID" dictLanguage.Add "english_orderform_3", "Please enter your Phone" dictLanguage.Add "english_orderform_4", "Please enter your address" dictLanguage.Add "english_orderform_5", "Please enter your City" dictLanguage.Add "english_orderform_6", "Please enter your ZIP code" dictLanguage.Add "english_orderform_7", "Please enter your country" dictLanguage.Add "english_orderform_8", "Your email is invalid" dictLanguage.Add "english_orderform_9", "Customer" dictLanguage.Add "english_orderform_10", "First Name" dictLanguage.Add "english_orderform_12", "Phone #" dictLanguage.Add "english_orderform_13", "Email" dictLanguage.Add "english_orderform_14", "* you can't modify" dictLanguage.Add "english_orderform_15", "Address" dictLanguage.Add "english_orderform_16", "City" dictLanguage.Add "english_orderform_17", "State" dictLanguage.Add "english_orderform_18", "Zip" dictLanguage.Add "english_orderform_19", "Country" dictLanguage.Add "english_orderform_20", "Shipment Method" dictLanguage.Add "english_orderform_21", "Shipment type" dictLanguage.Add "english_orderform_22", "Payment" dictLanguage.Add "english_orderform_23", "Pay with" dictLanguage.Add "english_orderform_24", "TAX type" dictLanguage.Add "english_orderform_25", "Comments" dictLanguage.Add "english_orderform_26", "Comments (Include the
shipping name here if shipping to a separate address.)" dictLanguage.Add "english_orderform_27", "Continue" dictLanguage.Add "english_orderform_28", "Reset" dictLanguage.Add "english_orderform_29", "Customer #" dictLanguage.Add "english_orderform_30", "Apply Tax" dictLanguage.Add "english_orderform_31", "No Tax" dictLanguage.Add "english_orderform_32", "Discount Code (optional)" dictLanguage.Add "english_orderform_33", "Billing address" dictLanguage.Add "english_orderform_34", "Shipping address" dictLanguage.Add "english_orderform_36", "Use separate shipping address" dictLanguage.Add "english_orderform_37", "Last Name" dictLanguage.Add "english_orderform_38", "Region or Province" dictLanguage.Add "english_orderform_39", "Company" dictLanguage.Add "english_orderform_40", "Password" dictLanguage.Add "english_orderform_41", "Password is autogenerated" dictLanguage.Add "english_checkshippingaddress_1", "Shipping address" dictLanguage.Add "english_checkshippingaddress_2", "Address" dictLanguage.Add "english_checkshippingaddress_3", "City" dictLanguage.Add "english_checkshippingaddress_4", "State" dictLanguage.Add "english_checkshippingaddress_5", "ZIP code" dictLanguage.Add "english_checkshippingaddress_6", "Country" dictLanguage.Add "english_checkshippingaddress_7", "Continue" dictLanguage.Add "english_checkshippingaddress_8", "Please select a state or enter Region or Province (Canadian orders)" dictLanguage.Add "english_checkshippingaddress_9", "Region or Province" dictLanguage.Add "english_checkshippingaddress_10", "Shipping First Name" ' added by cls dictLanguage.Add "english_checkshippingaddress_11", "Shipping Last Name" ' added by cls dictLanguage.Add "english_orderverify_1", "Please enter all required data." dictLanguage.Add "english_orderverify_2", "Your e-mail is already associated with a customer account. Please click your back button and use the Forgot Password feature." dictLanguage.Add "english_orderverify_3", "Apply Tax: " dictLanguage.Add "english_orderverify_4", "Date: " dictLanguage.Add "english_orderverify_5", "Name: " dictLanguage.Add "english_orderverify_6", "Email: " dictLanguage.Add "english_orderverify_8", "Phone #: " dictLanguage.Add "english_orderverify_9", "Billing Address: " dictLanguage.Add "english_orderverify_10", "Comments: " dictLanguage.Add "english_orderverify_11", "Quant." dictLanguage.Add "english_orderverify_12", "Item" dictLanguage.Add "english_orderverify_13", "Options" dictLanguage.Add "english_orderverify_14", "Price" dictLanguage.Add "english_orderverify_15", "Payment type: " dictLanguage.Add "english_orderverify_16", "Shipment type: " dictLanguage.Add "english_orderverify_17", "Subtotal: " dictLanguage.Add "english_orderverify_18", "TAX: " dictLanguage.Add "english_orderverify_19", "Total: " dictLanguage.Add "english_orderverify_20", "Save order" dictLanguage.Add "english_orderverify_21", "Cancel order" dictLanguage.Add "english_orderverify_22", "Yes" dictLanguage.Add "english_orderverify_23", "No" dictLanguage.Add "english_orderverify_24", "Invalid discount code entered" dictLanguage.Add "english_orderverify_25", "Discount Code" dictLanguage.Add "english_orderverify_26", "No discount code used" dictLanguage.Add "english_orderverify_27", "Discount requirements failed" dictLanguage.Add "english_orderverify_28", "Shipping Address: " dictLanguage.Add "english_orderverify_29", "Use the same as billing" dictLanguage.Add "english_orderverify_30", "Please enter all shipping address fields or leave that section blank" dictLanguage.Add "english_orderverify_31", "Before pressing Save Order you must agree with our " dictLanguage.Add "english_orderverify_32", "General Conditions" dictLanguage.Add "english_orderverify_33", "Company" dictLanguage.Add "english_saveorder_1", "Dear" dictLanguage.Add "english_saveorder_2", "
Thanks for shopping at Greencastlesoap.com" dictLanguage.Add "english_saveorder_3", "Your order details are " dictLanguage.Add "english_saveorder_4", "Your password for the store is: " dictLanguage.Add "english_saveorder_5", "Payment information: " dictLanguage.Add "english_saveorder_6", "Your order at " dictLanguage.Add "english_saveorder_7", " order #" dictLanguage.Add "english_saveorder_8", "Order total" dictLanguage.Add "english_saveorder_10", "No discounts applied." dictLanguage.Add "english_saveorder_11", "Discounts requirements failed." dictLanguage.Add "english_saveorder_12", "Options: " dictLanguage.Add "english_saveorder_13", "You will receive payment confirmation in another e-mail" dictLanguage.Add "english_saveorder_14", "Generated" dictLanguage.Add "english_saveorder_15", "Session lost due to long inactivity. Please start again with purchase process." dictLanguage.Add "english_orderconfirmation_1", "Thanks for shopping at " dictLanguage.Add "english_orderconfirmation_2", "Your order number is: #" dictLanguage.Add "english_orderconfirmation_3", "If you have any concerns write to " dictLanguage.Add "english_orderconfirmation_4", "Your payment has been rejected." dictLanguage.Add "english_login_1", "Please enter all the fields." dictLanguage.Add "english_login_2", "Your password is wrong or your email address is not in our database.
Please return to try again or sign up for a new account
Click on Forgot Password and we will email it to you.

" dictLanguage.Add "english_supporterror_1", "There are temporary errors in this store." dictLanguage.Add "english_supporterror_2", "Technical Support was notified." dictLanguage.Add "english_supporterror_3", "Thanks for your patience." dictLanguage.Add "english_supporterror_4", "You can find free technical assistance at http://forum.comersus.com" dictLanguage.Add "english_supporterror_5", "Temporary Errors" dictLanguage.Add "english_supporterror_6", "If you want to obtain free technical assistance" dictLanguage.Add "english_supporterror_7", "click here" dictLanguage.Add "english_cartremove_1", "Please enter an item to delete." dictLanguage.Add "english_cartrecalculate_1", "Your baskent is empty.

" dictLanguage.Add "english_cartrecalculate_2", "You cannot add that quantity due to store settings.

" dictLanguage.Add "english_changelanguage_1", "You must specify a valid language." dictLanguage.Add "english_changelanguage_2", "Store language now is english." dictLanguage.Add "english_changelanguage_3", "The store already was in english." dictLanguage.Add "english_ssl_1", "The order " dictLanguage.Add "english_ssl_2", " has been saved." dictLanguage.Add "english_ssl_3", "At this point you have to be redirectioned to your SSL. For this demo is disabled. If you havent an" dictLanguage.Add "english_ssl_4", "SSL certificate, take a look at profesional SSL service of Comersus." dictLanguage.Add "english_ssl_5", "More info in http://store.comersus.com" dictLanguage.Add "english_ssl_6", "Attention" dictLanguage.Add "english_listhotdealsproducts_1", "There are no hot deals defined right now." dictLanguage.Add "english_listhotdealsproducts_2", "Hot Deals" dictLanguage.Add "english_listhotdealsproducts_3", "Page " dictLanguage.Add "english_listhotdealsproducts_4", " of " dictLanguage.Add "english_bringrandomproduct_1", "There are no products available." dictLanguage.Add "english_bringrandomproduct_2", "View details here..." dictLanguage.Add "english_listbestsellers_1", "Not enough info to display best sellers list." dictLanguage.Add "english_listbestsellers_2", "Best Sellers" dictLanguage.Add "english_listcategoriesandproducts_1", "No active categories in this store" dictLanguage.Add "english_listcategoriesandproducts_2", "You are at " dictLanguage.Add "english_listcategoriesandproducts_3", "Products inside " dictLanguage.Add "english_listcategoriesandproducts_4", "No products inside " dictLanguage.Add "english_listcategoriesandproducts_5", "Categories " dictLanguage.Add "english_listcategoriesandproducts_6", "The category is not valid." dictLanguage.Add "english_listproductsbysupplier_1", "You must specify a supplier." dictLanguage.Add "english_listproductsbysupplier_2", "There are no products for that supplier." dictLanguage.Add "english_listproductsbysupplier_3", "Supplier: " dictLanguage.Add "english_listproductsbysupplier_4", "Page " dictLanguage.Add "english_listproductsbysupplier_5", " of " dictLanguage.Add "english_customershoworders_1", "Please enter all required data." dictLanguage.Add "english_customershoworders_2", "You have no orders in this store." dictLanguage.Add "english_customershoworders_3", "In Progress" dictLanguage.Add "english_customershoworders_4", "Delivered" dictLanguage.Add "english_customershoworders_5", "Cancelled" dictLanguage.Add "english_customershoworders_6", "Order Tracking" dictLanguage.Add "english_customershoworders_7", "Paid" dictLanguage.Add "english_customershoworders_8", "Date of order" dictLanguage.Add "english_customershoworders_9", "Order #" dictLanguage.Add "english_customershoworders_10", "Total Cost" dictLanguage.Add "english_customershoworders_11", "Status" dictLanguage.Add "english_customershoworderdetails_1", "Please enter an idOrder." dictLanguage.Add "english_customershoworderdetails_2", "IdOrder is invalid." dictLanguage.Add "english_customershoworderdetails_3", "Order Details" dictLanguage.Add "english_customershoworderdetails_4", "Order number" dictLanguage.Add "english_customershoworderdetails_5", "Date" dictLanguage.Add "english_customershoworderdetails_6", "Name" dictLanguage.Add "english_customershoworderdetails_7", "Email" dictLanguage.Add "english_customershoworderdetails_8", "Phone" dictLanguage.Add "english_customershoworderdetails_9", "Address" dictLanguage.Add "english_customershoworderdetails_10", "Shipping Address" dictLanguage.Add "english_customershoworderdetails_11", "Details" dictLanguage.Add "english_customershoworderdetails_12", "Shipment" dictLanguage.Add "english_customershoworderdetails_13", "Payment" dictLanguage.Add "english_customershoworderdetails_14", "Discounts" dictLanguage.Add "english_customershoworderdetails_15", "Status" dictLanguage.Add "english_customershoworderdetails_16", "Tax Amount" dictLanguage.Add "english_customershoworderdetails_17", "Total" dictLanguage.Add "english_customershoworderdetails_18", "(Same as billing)" dictLanguage.Add "english_customershoworderdetails_19", "In Progress" dictLanguage.Add "english_customershoworderdetails_20", "Delivered" dictLanguage.Add "english_customershoworderdetails_21", "Cancelled" dictLanguage.Add "english_customershoworderdetails_22", "Paid" dictLanguage.Add "english_forgotpasswordform_1", "Please enter your email" dictLanguage.Add "english_forgotpasswordform_2", "Email" dictLanguage.Add "english_forgotpasswordform_3", "Retrieve password" dictLanguage.Add "english_forgotpasswordexec_1", "Please enter your email" dictLanguage.Add "english_forgotpasswordexec_2", "Your email is not registered in this store" dictLanguage.Add "english_forgotpasswordexec_3", "Your password for the store" dictLanguage.Add "english_forgotpasswordexec_4", "Your password for the store is: " dictLanguage.Add "english_forgotpasswordexec_5", "We have sent you an email with your password" dictLanguage.Add "english_validateform_1", "You must enter a value for " dictLanguage.Add "english_validateform_2", "You must enter a date for " dictLanguage.Add "english_validateform_3", "You must enter a valid number (like 12.65 or 12) for " dictLanguage.Add "english_validateform_4", "You must enter a valid e-mail for " dictLanguage.Add "english_validateform_5", "You must enter a positive number for " dictLanguage.Add "english_validateform_6", "You must enter a valid phone for " dictLanguage.Add "english_validateform_7", "You must enter a valid integer number for " dictLanguage.Add "english_validateform_8", "You must enter a non free e-mail for " dictLanguage.Add "english_validateform_9", "DbSession data lost. Please try again." dictLanguage.Add "english_customerauthenticateform_1", "Enter authentication data" dictLanguage.Add "english_customerauthenticateform_2", "Send" dictLanguage.Add "english_customerauthenticateform_3", "Forgot your password?" dictLanguage.Add "english_customerauthenticateform_4", "E-mail" dictLanguage.Add "english_customerauthenticateform_5", "Password" dictLanguage.Add "english_customerauthenticateform_6", "Customer login" dictLanguage.Add "english_customerauthenticateform_7", "Not a member yet? Register " dictLanguage.Add "english_customerauthenticateform_8", "here" dictLanguage.Add "english_customerauthenticateexec_1", "Your password is wrong." dictLanguage.Add "english_customerutilitiesmenu_1", "Customer utilities menu" dictLanguage.Add "english_customerutilitiesmenu_2", "Order tracking" dictLanguage.Add "english_customerutilitiesmenu_3", "Modify user data" dictLanguage.Add "english_customerutilitiesmenu_4", "Logout" dictLanguage.Add "english_customerutilitiesmenu_5", "Wish List" dictLanguage.Add "english_customerutilitiesmenu_6", "- BtoB customer -" dictLanguage.Add "english_customerutilitiesmenu_7", "- BtoC customer -" dictLanguage.Add "english_customerutilitiesmenu_8", "List old Carts" dictLanguage.Add "english_customerutilitiesmenu_9", "List Auctions" dictLanguage.Add "english_customerutilitiesmenu_10", "Welcome back " dictLanguage.Add "english_customermodifyform_1", "Modify customer data" dictLanguage.Add "english_customermodifyform_2", "Name" dictLanguage.Add "english_customermodifyform_3", "Phone" dictLanguage.Add "english_customermodifyform_4", "Email" dictLanguage.Add "english_customermodifyform_5", "Password" dictLanguage.Add "english_customermodifyform_6", "Address" dictLanguage.Add "english_customermodifyform_7", "Zip" dictLanguage.Add "english_customermodifyform_8", "City" dictLanguage.Add "english_customermodifyform_9", "Another state" dictLanguage.Add "english_customermodifyform_10", "Country" dictLanguage.Add "english_customermodifyform_11", "Cust #" dictLanguage.Add "english_customermodifyform_12", "Last Name" dictLanguage.Add "english_customermodifyform_13", "State" dictLanguage.Add "english_customermodifyform_14", "Company" dictLanguage.Add "english_customermodifyexec_1", "Your data has been modified" dictLanguage.Add "english_customermodifyexec_2", "You must select a State Code or Another State, you cannot select both." dictLanguage.Add "english_customerwishlistview_1", "Wish List" dictLanguage.Add "english_customerwishlistview_2", "No items in your wish List" dictLanguage.Add "english_customerwishlistview_3", "View" dictLanguage.Add "english_customerwishlistview_4", "Remove" dictLanguage.Add "english_customerwishlistview_5", "Total of Wish List" dictLanguage.Add "english_customerwishlistview_6", "Save the " dictLanguage.Add "english_customerwishlistview_7", " favorites you've been hoping for in your Wish List! Come back at any time to purchase these top picks." dictLanguage.Add "english_customerwishlistview_8", "Item" dictLanguage.Add "english_customerwishlistview_9", "Description" dictLanguage.Add "english_customerwishlistview_10", "Price" dictLanguage.Add "english_customerwishlistview_11", "Actions" dictLanguage.Add "english_customerwishlistview_12", "Add" dictLanguage.Add "english_customerwishlistadd_1", "That item is already in your Wish List" dictLanguage.Add "english_customerwishlistadd_2", "Wish list" dictLanguage.Add "english_customerwishlistadd_3", "The item was added to your Wish List" dictLanguage.Add "english_customerwishlistremove_1", "That item wasn't in your Wish List" dictLanguage.Add "english_customershowoldcartdetails_1", "The cart doesn't exist." dictLanguage.Add "english_customershowoldcartdetails_2", "Old Carts" dictLanguage.Add "english_customershowoldcartdetails_3", "Old cart contains:" dictLanguage.Add "english_customershowoldcartdetails_4", "Quantity" dictLanguage.Add "english_customershowoldcartdetails_5", "Item #" dictLanguage.Add "english_customershowoldcartdetails_6", "Description" dictLanguage.Add "english_customershowoldcartdetails_7", "Options" dictLanguage.Add "english_customershowoldcartdetails_8", "Price" dictLanguage.Add "english_customershowoldcartdetails_9", "Actions" dictLanguage.Add "english_customershowoldcartdetails_10", "Remove" dictLanguage.Add "english_customershowoldcartdetails_11", "Cart Description" dictLanguage.Add "english_customershowoldcartdetails_12", "Total: " dictLanguage.Add "english_customershowoldcartdetails_13", "Tax not included" dictLanguage.Add "english_customershowoldcartdetails_14", "Cart saved on " dictLanguage.Add "english_customershowoldcartdetails_15", "Add all items to the cart" dictLanguage.Add "english_customershowoldcartdetails_16", "Estimated delivery time: " dictLanguage.Add "english_customershowoldcartdetails_17", " day/s" dictLanguage.Add "english_customershowoldcartdetails_18", " same day" dictLanguage.Add "english_customershowoldcartdetails_19", " undetermined" dictLanguage.Add "english_customerlistoldcarts_1", "You have no carts saved." dictLanguage.Add "english_customerlistoldcarts_2", " saved on " dictLanguage.Add "english_customerlistoldcarts_3", "view" dictLanguage.Add "english_customerlistoldcarts_4", "Old Carts" dictLanguage.Add "english_customeroldcartadditems_1", "Some items of your old cart couldn't be located." dictLanguage.Add "english_customeroldcartadditems_2", "Querystring data missing." dictLanguage.Add "english_customeroldcartadditems_3", "Session lost." dictLanguage.Add "english_customeroldcartadditems_4", "You cannot add more items." dictLanguage.Add "english_newsletteraddemailform_1", "Newsletter" dictLanguage.Add "english_newsletteraddemailform_2", "E-mail" dictLanguage.Add "english_newsletteraddemailform_3", "Send" dictLanguage.Add "english_newsletteraddemailexec_1", "You must enter an e-mail" dictLanguage.Add "english_newsletteraddemailexec_2", "The e-mail was already entered in this newsletter" dictLanguage.Add "english_newsletteraddemailexec_3", "Thanks for submiting your e-mail to our newsletter" dictLanguage.Add "english_newsletteraddemailexec_4", "Dear Sir, thanks for submitting your e-mail to " dictLanguage.Add "english_newsletteraddemailexec_5", " newsletter. " dictLanguage.Add "english_newsletteraddemailexec_6", "To remove your e-mail " dictLanguage.Add "english_newsletteraddemailexec_7", " newsletter" dictLanguage.Add "english_newsletteraddemailexec_8", "click here" dictLanguage.Add "english_newsletteraddemailexec_9", "You won a Gift Certificate!. The code is: " dictLanguage.Add "english_newsletterremoveemailexec_1", "You must enter an e-mail to remove" dictLanguage.Add "english_newsletterremoveemailexec_2", "The e-mail doesn´t exist in this newsletter" dictLanguage.Add "english_newsletterremoveemailexec_3", "Your e-mail has been removed from our newsletter" dictLanguage.Add "english_reviewaddform_1", "Add customer review for " dictLanguage.Add "english_reviewaddform_2", "Author" dictLanguage.Add "english_reviewaddform_3", "Email" dictLanguage.Add "english_reviewaddform_4", "Review" dictLanguage.Add "english_reviewaddform_5", "You must specify product ID" dictLanguage.Add "english_reviewaddform_6", "Stars" dictLanguage.Add "english_reviewaddform_7", "Subject" dictLanguage.Add "english_reviewaddform_8", "Save" dictLanguage.Add "english_reviewaddexec_1", "Thanks, your review has been saved and it's waiting activation" dictLanguage.Add "english_reviewaddexec_2", "Click here to read all previous reviews" dictLanguage.Add "english_reviewaddexec_3", "Customer review" dictLanguage.Add "english_reviewreadexec_1", "Customer reviews for " dictLanguage.Add "english_reviewreadexec_2", "You must specify product ID" dictLanguage.Add "english_reviewreadexec_3", "There are no reviews for this item" dictLanguage.Add "english_reviewreadexec_4", "You are trying to view a review for a product not available." dictLanguage.Add "english_reviewreadexec_5", "Page " dictLanguage.Add "english_reviewreadexec_6", "of " dictLanguage.Add "english_reviewreadexec_7", "Write a review" dictLanguage.Add "english_reviewreadexec_8", "Rate Review: " dictLanguage.Add "english_offlinepaymentform_1", "Comersus off-line payment" dictLanguage.Add "english_offlinepaymentform_2", "Card Type" dictLanguage.Add "english_offlinepaymentform_3", "Card Number" dictLanguage.Add "english_offlinepaymentform_4", "Expiration" dictLanguage.Add "english_offlinepaymentform_5", "Month" dictLanguage.Add "english_offlinepaymentform_6", "Year" dictLanguage.Add "english_offlinepaymentform_7", "Security Code" dictLanguage.Add "english_offlinepaymentform_8", "Name on card" dictLanguage.Add "english_offlinepaymentform_9", "CC statement receipt address" dictLanguage.Add "english_offlinepaymentform_10", "Save data" dictLanguage.Add "english_offlinepaymentexec_1", "Error in form, hidden fields missing" dictLanguage.Add "english_offlinepaymentexec_2", "Statement address receipt: " dictLanguage.Add "english_offlinepaymentexec_3", "Name on card: " dictLanguage.Add "english_offlinepaymentexec_4", "Your credit card information has been attached to your order.

You will be receiving an email confirmation shortly.
Thank you for doing business with GreenCastle Soap." dictLanguage.Add "english_offlinepaymentexec_5", "Credit card number is invalid.

" dictLanguage.Add "english_offlinepaymentexec_6", "Credit card expired.

" dictLanguage.Add "english_listrelatedproducts_1", "No related products for that item." dictLanguage.Add "english_listrelatedproducts_2", "Related products for " dictLanguage.Add "english_listrelatedproducts_3", "The product is not valid. " dictLanguage.Add "english_listrelatedproducts_4", "You must specify a product ID." dictLanguage.Add "english_emailtofriendform_1", "Email to a friend." dictLanguage.Add "english_emailtofriendform_2", "Your name" dictLanguage.Add "english_emailtofriendform_3", "Your friend's e-mail" dictLanguage.Add "english_emailtofriendform_4", "Send" dictLanguage.Add "english_emailtofriendform_5", "Body" dictLanguage.Add "english_emailtofriendform_6", "Thought you'd be interested in this item: " dictLanguage.Add "english_emailtofriendform_7", "More info at " dictLanguage.Add "english_emailtofriendexec_1", "Thanks, your email was sent." dictLanguage.Add "english_newspageexec_1", "There is no news in this store." dictLanguage.Add "english_newspageexec_2", "News at " dictLanguage.Add "english_customerregistrationform_1", "Customer registration" dictLanguage.Add "english_customerregistrationform_2", "Name" dictLanguage.Add "english_customerregistrationform_3", "Phone" dictLanguage.Add "english_customerregistrationform_4", "Email" dictLanguage.Add "english_customerregistrationform_5", "Password" dictLanguage.Add "english_customerregistrationform_6", "Address" dictLanguage.Add "english_customerregistrationform_7", "Zip" dictLanguage.Add "english_customerregistrationform_8", "State" dictLanguage.Add "english_customerregistrationform_9", "City" dictLanguage.Add "english_customerregistrationform_10", "Country" dictLanguage.Add "english_customerregistrationform_11", "Send" dictLanguage.Add "english_customerregistrationform_12", "Last Name" dictLanguage.Add "english_customerregistrationform_13", "Another state" dictLanguage.Add "english_customerregistrationform_14", "Company" dictLanguage.Add "english_customerregistrationexec_1", "That email was already used in this store.

" dictLanguage.Add "english_customerregistrationexec_2", "Thanks, your data was saved." dictLanguage.Add "english_customerregistrationexec_3", "Please select State or Another State, you cannot select both." dictLanguage.Add "english_fraudprevention_1", "Unfortunately we cannot process your order due to security restrictions. If you have any questions please write to us: " dictLanguage.Add "english_fraudprevention_2", "Order stopped with fraud filter prevention, order: " dictLanguage.Add "english_fraudprevention_3", "Warning email due to suspicious order # " dictLanguage.Add "english_optadvancedsearchform_1", "Advanced search" dictLanguage.Add "english_optadvancedsearchform_2", "Category" dictLanguage.Add "english_optadvancedsearchform_3", "Supplier" dictLanguage.Add "english_optadvancedsearchform_4", "All" dictLanguage.Add "english_optadvancedsearchform_5", "Price" dictLanguage.Add "english_optadvancedsearchform_6", "From" dictLanguage.Add "english_optadvancedsearchform_7", "Until" dictLanguage.Add "english_optadvancedsearchform_8", "Only with stock" dictLanguage.Add "english_optadvancedsearchform_9", "Keyword" dictLanguage.Add "english_optadvancedsearchform_10", "Search" dictLanguage.Add "english_autoupdateorderstatus_1", "Response fields missing" dictLanguage.Add "english_autoupdateorderstatus_2", "Thanks for your payment. You will receive an e-mail with adittional data." dictLanguage.Add "english_autoupdateorderstatus_3", "Your payment wasn't accepted. The transaction response was: " dictLanguage.Add "english_autoupdateorderstatus_4", "Customer order cannot be located." dictLanguage.Add "english_autoupdateorderstatus_5", ", payment information, order #" dictLanguage.Add "english_autoupdateorderstatus_6", "Your payment for the order #" dictLanguage.Add "english_autoupdateorderstatus_7", " was accepted" dictLanguage.Add "english_autoupdateorderstatus_8", "** Important: " dictLanguage.Add "english_autoupdateorderstatus_9", "** Some items in your order have no stock. Please give us enough time." dictLanguage.Add "english_autoupdateorderstatus_10", "The order was already processed." dictLanguage.Add "english_message_1", "Attention" dictLanguage.Add "english_generalconditions_1", "General Conditions" dictLanguage.Add "english_generalconditions_2", "General Conditions are not defined for this store." dictLanguage.Add "english_generalconditions_3", "Close" dictLanguage.Add "english_selectshipment_1", "Shipment Type" dictLanguage.Add "english_selectshipment_2", "Select" dictLanguage.Add "english_selectshipment_3", "Your e-mail was registered in this store. You can retrieve your old password or register with a new one." dictLanguage.Add "english_selectshipment_4", "There are no shipments for your selection of State/Country/Zip and basket content." dictLanguage.Add "english_selectshipment_5", "You must select the state or enter another state" dictLanguage.Add "english_optauctionsearchform_1", "Auction search" dictLanguage.Add "english_optauctionsearchform_2", "Category" dictLanguage.Add "english_optauctionsearchform_3", "All" dictLanguage.Add "english_optauctionsearchform_4", "Keyword" dictLanguage.Add "english_optauctionsearchform_5", "Search" dictLanguage.Add "english_optauctionsearchexec_1", "Customer specified is not valid" dictLanguage.Add "english_optauctionsearchexec_2", "There are no active auctions under that search" dictLanguage.Add "english_optauctiondetails_1", "View" dictLanguage.Add "english_optauctiondetails_2", "Product: " dictLanguage.Add "english_optauctiondetails_3", "From: " dictLanguage.Add "english_optauctiondetails_4", " ~ To: " dictLanguage.Add "english_optauctiondetails_5", "Offers: " dictLanguage.Add "english_optauctiondetails_6", "~ Last: " dictLanguage.Add "english_optauctionofferform_1", "You must specify the auction id." dictLanguage.Add "english_optauctionofferform_2", "Error in auctionofferform: " dictLanguage.Add "english_optauctionofferform_3", "There is no active auction with that id" dictLanguage.Add "english_optauctionofferform_4", "Offer Form" dictLanguage.Add "english_optauctionofferform_5", "Start date:" dictLanguage.Add "english_optauctionofferform_6", "End date:" dictLanguage.Add "english_optauctionofferform_7", "Start price:" dictLanguage.Add "english_optauctionofferform_8", "End price:" dictLanguage.Add "english_optauctionofferform_9", "Current price:" dictLanguage.Add "english_optauctionofferform_10", "Offers:" dictLanguage.Add "english_optauctionofferform_11", "Your offer:" dictLanguage.Add "english_optauctionofferexec_0", "There is no active auction with that id." dictLanguage.Add "english_optauctionofferexec_1", "Selected auction is closed." dictLanguage.Add "english_optauctionofferexec_2", "Your offer must surpass the current price at least by the minimum value for this auction." dictLanguage.Add "english_optauctionofferexec_3", "The offer surpasses the maximum offer amount possible for this auction." dictLanguage.Add "english_optauctionofferexec_4", "The offer does not surpasses the minimal amount possible for this auction." dictLanguage.Add "english_optauctionofferexec_5", "Notification of awarding of the auction." dictLanguage.Add "english_optauctionofferexec_6", "You can use the following discount code to purchase at http://" dictLanguage.Add "english_optauctionofferexec_7", "New offer for auction: " dictLanguage.Add "english_optauctionofferexec_8", "One customer has won the auction" dictLanguage.Add "english_optauctionofferexec_9", "Your offer for auction has been surpassed." dictLanguage.Add "english_optauctionofferexec_10", "Your offer for " dictLanguage.Add "english_optauctionofferexec_11", "Offer done" dictLanguage.Add "english_optauctionofferexec_12", "You have won this auction. Congratulations!. You will receive an email with details." dictLanguage.Add "english_optauctionofferexec_13", "Thanks for participating." dictLanguage.Add "english_optauctionofferexec_14", "The discount code for this auction is: " dictLanguage.Add "english_optauctionofferexec_15", "If you have any doubts please write to " dictLanguage.Add "english_optauctionofferexec_16", " has been surpassed." dictLanguage.Add "english_optauctionofferexec_17", "Return" dictLanguage.Add "english_optauctionofferexec_18", " to the offer form." dictLanguage.Add "english_optauctionofferexec_19", "You have won the auction for " dictLanguage.Add "english_optauctionofferexec_20", " at " dictLanguage.Add "english_optauctionofferexec_21", "You have the last offer for this product, you cannot offer again." dictLanguage.Add "english_optauctionlistall_1", "There are no active auctions at this moment." dictLanguage.Add "english_optauctionlistall_2", "Active Auctions" dictLanguage.Add "english_optauctionlistall_3", "Current Price" dictLanguage.Add "english_optauctionlistall_4", "From: " dictLanguage.Add "english_optauctionlistall_5", " ~ Until: " dictLanguage.Add "english_verifyDbSession_1", "Invalid dbSession detected. All session data will be initialized." dictLanguage.Add "english_dynamicindex_1", "There are no items marked for home display." dictLanguage.Add "english_dynamicindex_2", "More information..." dictLanguage.Add "english_dynamicindex_3", "Our price is " dictLanguage.Add "english_dynamicindex_4", "View Our Auctions" dictLanguage.Add "english_dynamicindex_5", "View all products of our featured supplier" dictLanguage.Add "english_dynamicindex_6", "Hot Deals" dictLanguage.Add "english_dynamicindex_7", "Best Sellers" dictLanguage.Add "english_getsessiondata_1", "Session lost. Please start again." dictLanguage.Add "english_optGetRelatedProducts_1", "View also: " dictLanguage.Add "english_listCategoriesTree_1", "No categories found" dictLanguage.Add "english_listCategoriesTree_2", "Categories Tree" dictLanguage.Add "english_headercart_1", "You have " dictLanguage.Add "english_headercart_2", " items " dictLanguage.Add "english_headercart_3", " in your " dictLanguage.Add "english_headercart_4", "shopping basket" dictLanguage.Add "english_headercart_5", "Subtotal: " dictLanguage.Add "english_headercart_6", "Checkout" dictLanguage.Add "english_footer_1", "Home" dictLanguage.Add "english_footer_2", "Hot-Deals" dictLanguage.Add "english_footer_3", "Best Sellers" dictLanguage.Add "english_footer_4", "Categories" dictLanguage.Add "english_footer_5", "Categories Tree" dictLanguage.Add "english_footer_6", "Advanced Search" dictLanguage.Add "english_footer_7", "Newsletter" dictLanguage.Add "english_footer_8", "NewsPage" dictLanguage.Add "english_footer_9", "Shopping Basket" dictLanguage.Add "english_footer_10", "Checkout" dictLanguage.Add "english_footer_11", "Customer Registration" dictLanguage.Add "english_footer_12", "Menu" dictLanguage.Add "english_footer_13", "Auctions" dictLanguage.Add "english_footer_14", "This is a demonstration of Comersus Cart system. The company and site are fictitious, products are not really for sale" dictLanguage.Add "english_header_1", "HOME" dictLanguage.Add "english_header_2", "CATEGORIES" dictLanguage.Add "english_header_3", "ORDER TRACKING" dictLanguage.Add "english_header_4", "BASKET" dictLanguage.Add "english_header_5", "WAP" dictLanguage.Add "english_header_6", "ORDER CHECKOUT" ' spanish dictLanguage.Add "spanish_viewitem_1", "Debe especificar el ID del artículo." dictLanguage.Add "spanish_viewitem_2", "El artículo especificado no existe." dictLanguage.Add "spanish_viewitem_3", "Precio " dictLanguage.Add "spanish_viewitem_4", "Usted ahorra " dictLanguage.Add "spanish_viewitem_5", "Comprar" dictLanguage.Add "spanish_viewitem_6", "Opciones adicionales" dictLanguage.Add "spanish_viewitem_7", "Sin stock en este momento" dictLanguage.Add "spanish_viewitem_8", "Leer comentarios" dictLanguage.Add "spanish_viewitem_9", "Escribir comentarios" dictLanguage.Add "spanish_viewitem_10", "Ver también: " dictLanguage.Add "spanish_viewitem_11", "El paquete Power Pack no se encuentra instalado. Más información en http://store.comersus.com" dictLanguage.Add "spanish_viewitem_12", "Añadir a la lista de deseos" dictLanguage.Add "spanish_viewitem_13", "Está en " dictLanguage.Add "spanish_viewitem_14", "Envíeselo a un amigo" dictLanguage.Add "spanish_viewitem_15", "Precio BtoB" dictLanguage.Add "spanish_viewitem_16", "(!) Este producto tiene descuentos por cantidad" dictLanguage.Add "spanish_viewitem_17", "(!) Obtenga este producto por menos. " dictLanguage.Add "spanish_viewitem_18", "Subastas disponibles. " dictLanguage.Add "spanish_viewitem_19", "Stock actual: " dictLanguage.Add "spanish_viewitem_20", "Calificado como " dictLanguage.Add "spanish_viewitem_21", "Sin calificaciones todavía" dictLanguage.Add "spanish_viewitem_22", "Ver también estos productos relacionados" dictLanguage.Add "spanish_viewitem_23", "No se puede agregar al carro dado que no tiene stock" dictLanguage.Add "spanish_searchitem_1", "Debe especificar el criterio de búsqueda." dictLanguage.Add "spanish_searchitem_2", "No hay artículos bajo ese criterio de búsqueda." dictLanguage.Add "spanish_searchitem_3", "Criterio de búsqueda: " dictLanguage.Add "spanish_searchitem_4", "Página " dictLanguage.Add "spanish_searchitem_5", " de " dictLanguage.Add "spanish_additem_1", "Por favor habilite las cookies en su navegador para usar el sistema." dictLanguage.Add "spanish_additem_2", "Hay demasiados artículos en su carro de compras. Borre algunos antes de continuar." dictLanguage.Add "spanish_additem_3", "El artículo no existe en la base de datos." dictLanguage.Add "spanish_additem_4", "Las opciones para el artículo no están disponibles." dictLanguage.Add "spanish_additem_5", "Se ha perdido la sesión. Todo la información fue recargada. Por favor intentelo nuevamente. Si recibe nuevamente este mensaje controle que las Cookies estén habilitadas en su navegador." dictLanguage.Add "spanish_additem_6", "No se puede agregar esa cantidad." dictLanguage.Add "spanish_additem_7", "Debe seleccionar opcionales antes de agregar ese artículo. Seleccione los opcionales desde la lista desplegable." dictLanguage.Add "spanish_showcart_1", "Su carro está vacío." dictLanguage.Add "spanish_showcart_2", "Por favor introduzca números mayores que cero." dictLanguage.Add "spanish_showcart_3", "Su carro contiene:" dictLanguage.Add "spanish_showcart_4", "Cantidad" dictLanguage.Add "spanish_showcart_5", "Artículo #" dictLanguage.Add "spanish_showcart_6", "Descripción" dictLanguage.Add "spanish_showcart_7", "Opciones" dictLanguage.Add "spanish_showcart_8", "Precio" dictLanguage.Add "spanish_showcart_9", "Acciones" dictLanguage.Add "spanish_showcart_10", "Eliminar" dictLanguage.Add "spanish_showcart_11", "Recalcular" dictLanguage.Add "spanish_showcart_12", "Total: " dictLanguage.Add "spanish_showcart_13", "Impuestos no incluidos" dictLanguage.Add "spanish_showcart_14", "Para seguir comprando haga click aquí..." dictLanguage.Add "spanish_showcart_15", "Para terminar su compra haga click aquí..." dictLanguage.Add "spanish_showcart_16", "Tiempo estimado de entrega: " dictLanguage.Add "spanish_showcart_17", " día/s" dictLanguage.Add "spanish_showcart_18", " mismo día" dictLanguage.Add "spanish_showcart_19", " undetermined" dictLanguage.Add "spanish_itemdetailsm_1", "Precio online" dictLanguage.Add "spanish_itemdetailsm_2", " ~ Usted ahorra " dictLanguage.Add "spanish_itemdetailsm_3", " Añadir" dictLanguage.Add "spanish_itemdetailsm_4", "Precio BtoB" dictLanguage.Add "spanish_itemdetailsm_5", "Ver" dictLanguage.Add "spanish_checkout_1", "Su carro está vacío, no puede pasar por caja." dictLanguage.Add "spanish_checkout_2", "Si es su primera compra en la tienda " dictLanguage.Add "spanish_checkout_3", "haga click aquí..." dictLanguage.Add "spanish_checkout_4", "Si ya ha comprado anteriormente introduzca los siguientes datos" dictLanguage.Add "spanish_checkout_5", "Enviar" dictLanguage.Add "spanish_checkout_6", "¿Olvidó su contraseña?" dictLanguage.Add "spanish_checkout_7", "Pasar por caja" dictLanguage.Add "spanish_checkout_8", "E-mail" dictLanguage.Add "spanish_checkout_9", "Contraseña" dictLanguage.Add "spanish_checkout_10", "No puede pasar por caja. La cantidad mínima de compra es " dictLanguage.Add "spanish_formfirstbuy_1", "Su carro está vacío, no puede pasar por caja." dictLanguage.Add "spanish_orderform_1", "Por favor ingrese su nombre" dictLanguage.Add "spanish_orderform_2", "Por favor ingrese su DNI" dictLanguage.Add "spanish_orderform_3", "Por fovor ingrese su teléfono" dictLanguage.Add "spanish_orderform_4", "Por favor ingrese su dirección" dictLanguage.Add "spanish_orderform_5", "Por favor ingrese su ciudad" dictLanguage.Add "spanish_orderform_6", "Por favor ingrese su código postal" dictLanguage.Add "spanish_orderform_7", "Por favor ingrese su país" dictLanguage.Add "spanish_orderform_8", "Su email es incorrecto" dictLanguage.Add "spanish_orderform_9", "Cliente" dictLanguage.Add "spanish_orderform_10", "Nombre" dictLanguage.Add "spanish_orderform_12", "Teléfono #" dictLanguage.Add "spanish_orderform_13", "Email" dictLanguage.Add "spanish_orderform_14", "* no se puede moificar" dictLanguage.Add "spanish_orderform_15", "Dirección" dictLanguage.Add "spanish_orderform_16", "Ciudad" dictLanguage.Add "spanish_orderform_17", "Provincia" dictLanguage.Add "spanish_orderform_18", "Código Postal" dictLanguage.Add "spanish_orderform_19", "País" dictLanguage.Add "spanish_orderform_20", "Método de envío" dictLanguage.Add "spanish_orderform_21", "Tipo de envío" dictLanguage.Add "spanish_orderform_22", "Pago" dictLanguage.Add "spanish_orderform_23", "Pagar con" dictLanguage.Add "spanish_orderform_24", "Tipo de impuesto" dictLanguage.Add "spanish_orderform_25", "Comentarios" dictLanguage.Add "spanish_orderform_26", "Comentarios (preguntas opcionales o comentarios acerca de su orden)" dictLanguage.Add "spanish_orderform_27", "Enviar" dictLanguage.Add "spanish_orderform_28", "Restablecer" dictLanguage.Add "spanish_orderform_29", "Cliente #" dictLanguage.Add "spanish_orderform_30", "Aplicar impuesto" dictLanguage.Add "spanish_orderform_31", "No aplicar impuesto" dictLanguage.Add "spanish_orderform_32", "Código de descuento (opcional)" dictLanguage.Add "spanish_orderform_33", "Dirección de factura" dictLanguage.Add "spanish_orderform_34", "Dirección de envío" dictLanguage.Add "spanish_orderform_36", "Utilizar dirección de envío diferente" dictLanguage.Add "spanish_orderform_37", "Apellido" dictLanguage.Add "spanish_orderform_38", "Otra Provincia" dictLanguage.Add "spanish_orderform_39", "Compañía" dictLanguage.Add "spanish_orderform_40", "Contraseña" dictLanguage.Add "spanish_orderform_41", "Contraseña autogenerda" dictLanguage.Add "spanish_checkshippingaddress_1", "Dirección de envío" dictLanguage.Add "spanish_checkshippingaddress_2", "Dirección" dictLanguage.Add "spanish_checkshippingaddress_3", "Ciudad" dictLanguage.Add "spanish_checkshippingaddress_4", "Provincia" dictLanguage.Add "spanish_checkshippingaddress_5", "Código Postal" dictLanguage.Add "spanish_checkshippingaddress_6", "País" dictLanguage.Add "spanish_checkshippingaddress_7", "Continuar" dictLanguage.Add "spanish_checkshippingaddress_8", "Por favor seleccionar una Provincia o ingrese Otra Provincia" dictLanguage.Add "spanish_checkshippingaddress_9", "Otra Provincia" dictLanguage.Add "spanish_orderverify_1", "Por favor ingrese todos los datos requeridos." dictLanguage.Add "spanish_orderverify_2", "Su e-mail ya se encuentra registrado en esta tienda." dictLanguage.Add "spanish_orderverify_3", "Aplicar impuesto: " dictLanguage.Add "spanish_orderverify_4", "Fecha: " dictLanguage.Add "spanish_orderverify_5", "Nombre: " dictLanguage.Add "spanish_orderverify_6", "Email: " dictLanguage.Add "spanish_orderverify_8", "Teléfono #: " dictLanguage.Add "spanish_orderverify_9", "Dirección de envío: " dictLanguage.Add "spanish_orderverify_10", "Comentarios: " dictLanguage.Add "spanish_orderverify_11", "Cantidad." dictLanguage.Add "spanish_orderverify_12", "Artículo" dictLanguage.Add "spanish_orderverify_13", "Opciones" dictLanguage.Add "spanish_orderverify_14", "Precio" dictLanguage.Add "spanish_orderverify_15", "Tipo de pago: " dictLanguage.Add "spanish_orderverify_16", "Tipo de envío: " dictLanguage.Add "spanish_orderverify_17", "Subtotal: " dictLanguage.Add "spanish_orderverify_18", "Impuesto: " dictLanguage.Add "spanish_orderverify_19", "Total: " dictLanguage.Add "spanish_orderverify_20", "Grabar orden" dictLanguage.Add "spanish_orderverify_21", "Cancelar orden" dictLanguage.Add "spanish_orderverify_22", "Si" dictLanguage.Add "spanish_orderverify_23", "No" dictLanguage.Add "spanish_orderverify_24", "Código de descuento ingresado incorrecto" dictLanguage.Add "spanish_orderverify_25", "Código de descuento" dictLanguage.Add "spanish_orderverify_26", "No se utilizó código de descuento" dictLanguage.Add "spanish_orderverify_27", "Fallaron los requerimientos de descuento" dictLanguage.Add "spanish_orderverify_28", "Dirección de envío: " dictLanguage.Add "spanish_orderverify_29", "Utilizar la misma que la de cobro" dictLanguage.Add "spanish_orderverify_30", "Por favor ingrese todos los campos de dirección de envío o deje esa sección en blanco" dictLanguage.Add "spanish_orderverify_31", "Antes de presionar Grabar Orden usted debe estar de acuerdo con nuestras " dictLanguage.Add "spanish_orderverify_32", "Condiciones Generales" dictLanguage.Add "spanish_orderverify_33", "Compañía" dictLanguage.Add "spanish_saveorder_1", "Querido/a" dictLanguage.Add "spanish_saveorder_2", "Gracias por comprar en nuestra tienda" dictLanguage.Add "spanish_saveorder_3", "Los detalles de su orden son " dictLanguage.Add "spanish_saveorder_4", "Su contraseña para la tienda es: " dictLanguage.Add "spanish_saveorder_5", "Información de pago: " dictLanguage.Add "spanish_saveorder_6", "Su orden en " dictLanguage.Add "spanish_saveorder_7", " orden #" dictLanguage.Add "spanish_saveorder_8", "Orden total" dictLanguage.Add "spanish_saveorder_10", "No se aplicaron descuentos." dictLanguage.Add "spanish_saveorder_11", "Fallaron los requerimientos de descuento." dictLanguage.Add "spanish_saveorder_12", "Opciones: " dictLanguage.Add "spanish_saveorder_13", "Usted recibirá la confirmación del pago en otro email" dictLanguage.Add "spanish_saveorder_14", "Generado por Comersus" dictLanguage.Add "spanish_saveorder_15", "Sesión perdida por inactividad prolongada. Por favor comience nuevamente el proceso de compra." dictLanguage.Add "spanish_orderconfirmation_1", "Gracias por comprar en " dictLanguage.Add "spanish_orderconfirmation_2", "Su número de orden es: #" dictLanguage.Add "spanish_orderconfirmation_3", "Si tiene alguna duda escriba a " dictLanguage.Add "spanish_orderconfirmation_4", "Su pago ha sido rechazado." dictLanguage.Add "spanish_login_1", "Por favor ingrese todos los campos." dictLanguage.Add "spanish_login_2", "Su contraseña es inválida." dictLanguage.Add "spanish_supporterror_1", "Hay errores temporarios en la tienda." dictLanguage.Add "spanish_supporterror_2", "Soporte Técnico ha sido notificado." dictLanguage.Add "spanish_supporterror_3", "Gracias por su paciencia." dictLanguage.Add "spanish_supporterror_4", "Usted puede encontrar asistencia técnica gratuita en http://forum.comersus.com" dictLanguage.Add "spanish_supporterror_5", "Errores Temporarios" dictLanguage.Add "spanish_supporterror_6", "Si usted quiere obtener asistencia técnica gratuita" dictLanguage.Add "spanish_supporterror_7", "Haga click aquí" dictLanguage.Add "spanish_cartremove_1", "Por favor ingrese un artículo para eliminar." dictLanguage.Add "spanish_cartrecalculate_1", "Su carro está vacío." dictLanguage.Add "spanish_cartrecalculate_2", "Cantidad no permitida." dictLanguage.Add "spanish_changelanguage_1", "Debe especificar un lenguaje válido." dictLanguage.Add "spanish_changelanguage_2", "El lenguaje de la tiende ahora es Español." dictLanguage.Add "spanish_changelanguage_3", "La tienda ya estaba en Español." dictLanguage.Add "spanish_ssl_1", "La orden " dictLanguage.Add "spanish_ssl_2", " ha sido grabada." dictLanguage.Add "spanish_ssl_3", "En este momento debería ser redireccionado al formulario SSL. Para esta demostración ha sido inhabilitado. Si usted no tiene un" dictLanguage.Add "spanish_ssl_4", "certificado SSL, observe el servicio de SSL de Comersus." dictLanguage.Add "spanish_ssl_5", "Más información en http://store.comersus.com" dictLanguage.Add "spanish_ssl_6", "Atención" dictLanguage.Add "spanish_listhotdealsproducts_1", "No hay ofertas definidas en este momento." dictLanguage.Add "spanish_listhotdealsproducts_2", "Ofertas" dictLanguage.Add "spanish_listhotdealsproducts_3", "Página " dictLanguage.Add "spanish_listhotdealsproducts_4", " de " dictLanguage.Add "spanish_bringrandomproduct_1", "No hay productos disponibles." dictLanguage.Add "spanish_bringrandomproduct_2", "Vea los detalles aquí..." dictLanguage.Add "spanish_listbestsellers_1", "No hay suficiente información para mostrar la lista de los más vendidos." dictLanguage.Add "spanish_listbestsellers_2", "Más vendidos" dictLanguage.Add "spanish_listcategoriesandproducts_1", "No hay categorías activas en esta tienda" dictLanguage.Add "spanish_listcategoriesandproducts_2", "Usted está en " dictLanguage.Add "spanish_listcategoriesandproducts_3", "Productos " dictLanguage.Add "spanish_listcategoriesandproducts_4", "No hay productos dentro " dictLanguage.Add "spanish_listcategoriesandproducts_5", "Categorías " dictLanguage.Add "spanish_listcategoriesandproducts_6", "La categoría no es válida." dictLanguage.Add "spanish_listproductsbysupplier_1", "Debe especificar un distribuidor." dictLanguage.Add "spanish_listproductsbysupplier_2", "No hay productos para ese distribuidor." dictLanguage.Add "spanish_listproductsbysupplier_3", "Distribuidor: " dictLanguage.Add "spanish_listproductsbysupplier_4", "Página " dictLanguage.Add "spanish_listproductsbysupplier_5", " de " dictLanguage.Add "spanish_customershoworders_1", "Por favor ingrese todos los datos requeridos." dictLanguage.Add "spanish_customershoworders_2", "Usted no tiene pedidos en esta tienda." dictLanguage.Add "spanish_customershoworders_3", "En proceso" dictLanguage.Add "spanish_customershoworders_4", "Enviado" dictLanguage.Add "spanish_customershoworders_5", "Cancelado" dictLanguage.Add "spanish_customershoworders_6", "Estado del pedido" dictLanguage.Add "spanish_customershoworders_7", "Pagado" dictLanguage.Add "spanish_customershoworders_8", "Fecha de pedido" dictLanguage.Add "spanish_customershoworders_9", "Orden #" dictLanguage.Add "spanish_customershoworders_10", "Costo Total" dictLanguage.Add "spanish_customershoworders_11", "Estado" dictLanguage.Add "spanish_customershoworderdetails_1", "Por favor ingrese el ID de la orden" dictLanguage.Add "spanish_customershoworderdetails_2", "el ID de la orden no es válido." dictLanguage.Add "spanish_customershoworderdetails_3", "Detalles de la orden" dictLanguage.Add "spanish_customershoworderdetails_4", "Número de Orden" dictLanguage.Add "spanish_customershoworderdetails_5", "Fecha" dictLanguage.Add "spanish_customershoworderdetails_6", "Nombre" dictLanguage.Add "spanish_customershoworderdetails_7", "Email" dictLanguage.Add "spanish_customershoworderdetails_8", "Teléfono" dictLanguage.Add "spanish_customershoworderdetails_9", "Dirección" dictLanguage.Add "spanish_customershoworderdetails_10", "Dirección de envío" dictLanguage.Add "spanish_customershoworderdetails_11", "Detalles" dictLanguage.Add "spanish_customershoworderdetails_12", "Envío" dictLanguage.Add "spanish_customershoworderdetails_13", "Pago" dictLanguage.Add "spanish_customershoworderdetails_14", "Descuentos" dictLanguage.Add "spanish_customershoworderdetails_15", "Estado" dictLanguage.Add "spanish_customershoworderdetails_16", "Monto de Impuesto" dictLanguage.Add "spanish_customershoworderdetails_17", "Total" dictLanguage.Add "spanish_customershoworderdetails_18", "(igual a factura)" dictLanguage.Add "spanish_customershoworderdetails_19", "En proceso" dictLanguage.Add "spanish_customershoworderdetails_20", "Enviado" dictLanguage.Add "spanish_customershoworderdetails_21", "Cancelado" dictLanguage.Add "spanish_customershoworderdetails_22", "Pagado" dictLanguage.Add "spanish_forgotpasswordform_1", "Por favor ingrese su email" dictLanguage.Add "spanish_forgotpasswordform_2", "Email" dictLanguage.Add "spanish_forgotpasswordform_3", "Obtener contraseña" dictLanguage.Add "spanish_forgotpasswordexec_1", "Por favor ingrese su email" dictLanguage.Add "spanish_forgotpasswordexec_2", "Su mail no está registrado en esta tienda" dictLanguage.Add "spanish_forgotpasswordexec_3", "Su contraseña para la tienda" dictLanguage.Add "spanish_forgotpasswordexec_4", "Su contraseña para la tienda es: " dictLanguage.Add "spanish_forgotpasswordexec_5", "Le hemos enviado un email con su contraseña" dictLanguage.Add "spanish_validateform_1", "Debe ingresar un valor para " dictLanguage.Add "spanish_validateform_2", "Debe ingresar una fecha para " dictLanguage.Add "spanish_validateform_3", "Debe ingresar un número válido (como 12.65 o 12) para " dictLanguage.Add "spanish_validateform_4", "Debe ingresar un e-mail válido para " dictLanguage.Add "spanish_validateform_5", "Debe ingresar un número positivo para " dictLanguage.Add "spanish_validateform_6", "Debe ingresar un teléfono válido para " dictLanguage.Add "spanish_validateform_7", "Debe ingresar un número entero válido para " dictLanguage.Add "spanish_validateform_8", "Debe ingresar un e-mail no gratuito para " dictLanguage.Add "spanish_validateform_9", "Datos de DbSession perdidos. Por favor inténtelo nuevamente." dictLanguage.Add "spanish_customerauthenticateform_1", "Introduzca los datos de autenticación" dictLanguage.Add "spanish_customerauthenticateform_2", "Enviar" dictLanguage.Add "spanish_customerauthenticateform_3", "¿Olvidó su contraseña?" dictLanguage.Add "spanish_customerauthenticateform_4", "E-mail" dictLanguage.Add "spanish_customerauthenticateform_5", "Contraseña" dictLanguage.Add "spanish_customerauthenticateform_6", "Login del cliente" dictLanguage.Add "spanish_customerauthenticateform_7", "¿Aun no es miembro? Regístrese " dictLanguage.Add "spanish_customerauthenticateform_8", "aquí" dictLanguage.Add "spanish_customerauthenticateexec_1", "Su contraseña es inválida." dictLanguage.Add "spanish_customerutilitiesmenu_1", "Menú de utilidades para el cliente" dictLanguage.Add "spanish_customerutilitiesmenu_2", "Seguimiento de pedidos" dictLanguage.Add "spanish_customerutilitiesmenu_3", "Modificar información del usuario" dictLanguage.Add "spanish_customerutilitiesmenu_4", "Salir" dictLanguage.Add "spanish_customerutilitiesmenu_5", "Lista de deseos" dictLanguage.Add "spanish_customerutilitiesmenu_6", "- Cliente BtoB -" dictLanguage.Add "spanish_customerutilitiesmenu_7", "- Cliente BtoC -" dictLanguage.Add "spanish_customerutilitiesmenu_8", "Listar carros históricos" dictLanguage.Add "spanish_customerutilitiesmenu_9", "Listar subastas" dictLanguage.Add "spanish_customerutilitiesmenu_10", "Bienvenido " dictLanguage.Add "spanish_customermodifyform_1", "Modificar información del cliente" dictLanguage.Add "spanish_customermodifyform_2", "Nombre" dictLanguage.Add "spanish_customermodifyform_3", "Teléfono" dictLanguage.Add "spanish_customermodifyform_4", "Email" dictLanguage.Add "spanish_customermodifyform_5", "Contraseña" dictLanguage.Add "spanish_customermodifyform_6", "Dirección" dictLanguage.Add "spanish_customermodifyform_7", "Código Postal" dictLanguage.Add "spanish_customermodifyform_8", "Ciudad" dictLanguage.Add "spanish_customermodifyform_9", "Otra Provincia" dictLanguage.Add "spanish_customermodifyform_10", "País" dictLanguage.Add "spanish_customermodifyform_11", "Cliente #" dictLanguage.Add "spanish_customermodifyform_12", "Apellido" dictLanguage.Add "spanish_customermodifyform_13", "Provincia" dictLanguage.Add "spanish_customermodifyform_14", "Compañía" dictLanguage.Add "spanish_customermodifyexec_1", "Sus datos han sido modificados" dictLanguage.Add "spanish_customermodifyexec_2", "You must select a State Code or Another State, you cannot select both." dictLanguage.Add "spanish_customerwishlistview_1", "Lista de Deseos" dictLanguage.Add "spanish_customerwishlistview_2", "No hay artículos en su lista de deseos" dictLanguage.Add "spanish_customerwishlistview_3", "Ver" dictLanguage.Add "spanish_customerwishlistview_4", "Eliminar" dictLanguage.Add "spanish_customerwishlistview_5", "Total de la Lista de Deseos" dictLanguage.Add "spanish_customerwishlistview_6", "Grabar el " dictLanguage.Add "spanish_customerwishlistview_7", " favoritos que estaba deseando tener en su Lista de Deseos! Regrese en cualquier momento a comprar estos artículos." dictLanguage.Add "spanish_customerwishlistview_8", "Artículo" dictLanguage.Add "spanish_customerwishlistview_9", "Descripción" dictLanguage.Add "spanish_customerwishlistview_10", "Precio" dictLanguage.Add "spanish_customerwishlistview_11", "Acciones" dictLanguage.Add "spanish_customerwishlistview_12", "Agregar" dictLanguage.Add "spanish_customerwishlistadd_1", "Ese artículo ya está en su Lista de Deseos" dictLanguage.Add "spanish_customerwishlistadd_2", "Lista de Deseos" dictLanguage.Add "spanish_customerwishlistadd_3", "El artículo fue agregado a su Lista de Deseos" dictLanguage.Add "spanish_customerwishlistremove_1", "Ese artículo no estaba incluido en su Lista de Deseos" dictLanguage.Add "spanish_customershowoldcartdetails_1", "El carro no existe." dictLanguage.Add "spanish_customershowoldcartdetails_2", "Antiguos Carros" dictLanguage.Add "spanish_customershowoldcartdetails_3", "El antiguo carro contiene:" dictLanguage.Add "spanish_customershowoldcartdetails_4", "Cantidad" dictLanguage.Add "spanish_customershowoldcartdetails_5", "Artículo #" dictLanguage.Add "spanish_customershowoldcartdetails_6", "Descripción" dictLanguage.Add "spanish_customershowoldcartdetails_7", "Opciones" dictLanguage.Add "spanish_customershowoldcartdetails_8", "Precio" dictLanguage.Add "spanish_customershowoldcartdetails_9", "Acciones" dictLanguage.Add "spanish_customershowoldcartdetails_10", "Eliminar" dictLanguage.Add "spanish_customershowoldcartdetails_11", "Descripción del Carro" dictLanguage.Add "spanish_customershowoldcartdetails_12", "Total: " dictLanguage.Add "spanish_customershowoldcartdetails_13", "Impuesto no incluido" dictLanguage.Add "spanish_customershowoldcartdetails_14", "Carro garbado en " dictLanguage.Add "spanish_customershowoldcartdetails_15", "Agregar todos los artículos en el Carro" dictLanguage.Add "spanish_customershowoldcartdetails_16", "Tiempo estimado de entrega: " dictLanguage.Add "spanish_customershowoldcartdetails_17", " día/s" dictLanguage.Add "spanish_customershowoldcartdetails_18", " mismo día" dictLanguage.Add "spanish_customershowoldcartdetails_19", " indeterminado" dictLanguage.Add "spanish_customerlistoldcarts_1", "Usted no ha grabado carros." dictLanguage.Add "spanish_customerlistoldcarts_2", " grabado en " dictLanguage.Add "spanish_customerlistoldcarts_3", "ver" dictLanguage.Add "spanish_customerlistoldcarts_4", "Antiguos Carros" dictLanguage.Add "spanish_customeroldcartadditems_1", "Algunos artículos de su antiguo carro no pudieron ser localizados." dictLanguage.Add "spanish_customeroldcartadditems_2", "Querystring data missing." dictLanguage.Add "spanish_customeroldcartadditems_3", "Sesión perdida." dictLanguage.Add "spanish_customeroldcartadditems_4", "Usted no puede agregar más artículos." dictLanguage.Add "spanish_newsletteraddemailform_1", "Lista de distribución" dictLanguage.Add "spanish_newsletteraddemailform_2", "E-mail" dictLanguage.Add "spanish_newsletteraddemailform_3", "Enviar" dictLanguage.Add "spanish_newsletteraddemailexec_1", "Debe ingresar un e-mail" dictLanguage.Add "spanish_newsletteraddemailexec_2", "El e-mail ya ha sido ingresado en esta Lista" dictLanguage.Add "spanish_newsletteraddemailexec_3", "Gracias por enviar su e-mail a nuestra Lista" dictLanguage.Add "spanish_newsletteraddemailexec_4", "Querido Señor, gracias por enviar su e-mail a " dictLanguage.Add "spanish_newsletteraddemailexec_5", " newsletter. " dictLanguage.Add "spanish_newsletteraddemailexec_6", "Para eliminar su e-mail " dictLanguage.Add "spanish_newsletteraddemailexec_7", " newsletter" dictLanguage.Add "spanish_newsletteraddemailexec_8", "haga click aquí" dictLanguage.Add "spanish_newsletteraddemailexec_9", "Usted ganó un Certificado de Obsequio!. El código es: " dictLanguage.Add "spanish_newsletterremoveemailexec_1", "Debe ingresar un e-mail para eliminar" dictLanguage.Add "spanish_newsletterremoveemailexec_2", "El e-mail no existe en esta Lista" dictLanguage.Add "spanish_newsletterremoveemailexec_3", "Su e-mail ha sido eliminado de nuestra Lista" dictLanguage.Add "spanish_reviewaddform_1", "Agregar comentario del cliente " dictLanguage.Add "spanish_reviewaddform_2", "Autor" dictLanguage.Add "spanish_reviewaddform_3", "Email" dictLanguage.Add "spanish_reviewaddform_4", "Comentario" dictLanguage.Add "spanish_reviewaddform_5", "Debe especificar el ID del artículo" dictLanguage.Add "spanish_reviewaddform_6", "Estrella" dictLanguage.Add "spanish_reviewaddform_7", "Asunto" dictLanguage.Add "spanish_reviewaddform_8", "Grabar" dictLanguage.Add "spanish_reviewaddexec_1", "Gracias, su comentario ha sido grabado y está esperando la activación." dictLanguage.Add "spanish_reviewaddexec_2", "Haga Click aquí para leer todos los comentarios previos." dictLanguage.Add "spanish_reviewaddexec_3", "Comentario del cliente" dictLanguage.Add "spanish_reviewreadexec_1", "Comentarios del cliente para" dictLanguage.Add "spanish_reviewreadexec_2", "Debe especificar el ID del artículo" dictLanguage.Add "spanish_reviewreadexec_3", "No hay comentarios para este artículo" dictLanguage.Add "spanish_reviewreadexec_4", "Usted está intentando ver un comentario de un artículo que no está disponible." dictLanguage.Add "spanish_reviewreadexec_5", "Página " dictLanguage.Add "spanish_reviewreadexec_6", "de " dictLanguage.Add "spanish_reviewreadexec_7", "Escribir un comentario" dictLanguage.Add "spanish_reviewreadexec_8", "Revisión promedio: " dictLanguage.Add "spanish_offlinepaymentform_1", "Comersus pago off-line" dictLanguage.Add "spanish_offlinepaymentform_2", "Tipo de tarjeta" dictLanguage.Add "spanish_offlinepaymentform_3", "Número de tarjeta" dictLanguage.Add "spanish_offlinepaymentform_4", "Fecha de expiración" dictLanguage.Add "spanish_offlinepaymentform_5", "Mes" dictLanguage.Add "spanish_offlinepaymentform_6", "Año" dictLanguage.Add "spanish_offlinepaymentform_7", "Código de seguridad" dictLanguage.Add "spanish_offlinepaymentform_8", "Nombre que aparece en la tarjeta" dictLanguage.Add "spanish_offlinepaymentform_9", "Dirección de entrega de resúmenes" dictLanguage.Add "spanish_offlinepaymentform_10", "Grabar datos" dictLanguage.Add "spanish_offlinepaymentexec_1", "Error en el formulario, faltan campos ocultos" dictLanguage.Add "spanish_offlinepaymentexec_2", "Dirección de entrega de resúmenes: " dictLanguage.Add "spanish_offlinepaymentexec_3", "Nombre que aparece en la tarjeta: " dictLanguage.Add "spanish_offlinepaymentexec_4", "Gracias, los datos de su tarjeta han sido grabados." dictLanguage.Add "spanish_offlinepaymentexec_5", "El número de la tarjeta de crédito es inválido." dictLanguage.Add "spanish_offlinepaymentexec_6", "Tarjeta de crédito vencida." dictLanguage.Add "spanish_listrelatedproducts_1", "No hay productos relaccionados para ese artículo." dictLanguage.Add "spanish_listrelatedproducts_2", "Productos relacionados para " dictLanguage.Add "spanish_listrelatedproducts_3", "El producto no es válido. " dictLanguage.Add "spanish_listrelatedproducts_4", "Debe especificar un ID de producto." dictLanguage.Add "spanish_emailtofriendform_1", "Enviárselo a un amigo." dictLanguage.Add "spanish_emailtofriendform_2", "Su nombre" dictLanguage.Add "spanish_emailtofriendform_3", "El e-mail de su amigo" dictLanguage.Add "spanish_emailtofriendform_4", "Enviar" dictLanguage.Add "spanish_emailtofriendform_5", "Texto" dictLanguage.Add "spanish_emailtofriendform_6", "Pensé que podría interesarte este artículo: " dictLanguage.Add "spanish_emailtofriendform_7", "Más información en " dictLanguage.Add "spanish_emailtofriendexec_1", "Gracias, su e-mail ha sido enviado." dictLanguage.Add "spanish_newspageexec_1", "No hay novedades en esta tienda." dictLanguage.Add "spanish_newspageexec_2", "Novedades en " dictLanguage.Add "spanish_customerregistrationform_1", "Registro del cliente" dictLanguage.Add "spanish_customerregistrationform_2", "Nombre" dictLanguage.Add "spanish_customerregistrationform_3", "Teléfono" dictLanguage.Add "spanish_customerregistrationform_4", "E-mail" dictLanguage.Add "spanish_customerregistrationform_5", "Contraseña" dictLanguage.Add "spanish_customerregistrationform_6", "Dirección" dictLanguage.Add "spanish_customerregistrationform_7", "Código Postal" dictLanguage.Add "spanish_customerregistrationform_8", "Provincia" dictLanguage.Add "spanish_customerregistrationform_9", "Ciudad" dictLanguage.Add "spanish_customerregistrationform_10", "País" dictLanguage.Add "spanish_customerregistrationform_11", "Enviar" dictLanguage.Add "spanish_customerregistrationform_12", "Apellido" dictLanguage.Add "spanish_customerregistrationform_13", "Otra Provincia" dictLanguage.Add "spanish_customerregistrationform_14", "Compañía" dictLanguage.Add "spanish_customerregistrationexec_1", "Ese e-mail ya ha sido utilizado en esta tienda" dictLanguage.Add "spanish_customerregistrationexec_2", "Gracias, sus datos han sido grabados." dictLanguage.Add "spanish_customerregistrationexec_3", "Por favor seleccione Provincia u Otra Provincia, no puede seleccionar ambos." dictLanguage.Add "spanish_fraudprevention_1", "Desafortunadamente no podemos procesar su orden debido a restricciones de seguridad. Si tiene alguna pregunta por favor escríbanos: " dictLanguage.Add "spanish_fraudprevention_2", "Pedido parado por el filtro de prevención de fraude, pedido: " dictLanguage.Add "spanish_fraudprevention_3", "E-mail de aviso por pedido sospechoso # " dictLanguage.Add "spanish_optadvancedsearchform_1", "Búsqueda avanzada" dictLanguage.Add "spanish_optadvancedsearchform_2", "Categoría" dictLanguage.Add "spanish_optadvancedsearchform_3", "Proveedor" dictLanguage.Add "spanish_optadvancedsearchform_4", "Todos" dictLanguage.Add "spanish_optadvancedsearchform_5", "Precio" dictLanguage.Add "spanish_optadvancedsearchform_6", "Desde" dictLanguage.Add "spanish_optadvancedsearchform_7", "Hasta" dictLanguage.Add "spanish_optadvancedsearchform_8", "Únicamente con stock" dictLanguage.Add "spanish_optadvancedsearchform_9", "Palabra Clave" dictLanguage.Add "spanish_optadvancedsearchform_10", "Buscar" dictLanguage.Add "spanish_autoupdateorderstatus_1", "Campos de respuesta perdidos" dictLanguage.Add "spanish_autoupdateorderstatus_2", "Gracias por su pago. Usted recibirá un e-mail con datos adicionales." dictLanguage.Add "spanish_autoupdateorderstatus_3", "Su pago no fue aceptado. La respuesta de la transacción fue: " dictLanguage.Add "spanish_autoupdateorderstatus_4", "La orden del cliente no puede ser ubicada." dictLanguage.Add "spanish_autoupdateorderstatus_5", ", información de pago, orden #" dictLanguage.Add "spanish_autoupdateorderstatus_6", "Su pago de la orden #" dictLanguage.Add "spanish_autoupdateorderstatus_7", " fue aceptado" dictLanguage.Add "spanish_autoupdateorderstatus_8", "** Importante: " dictLanguage.Add "spanish_autoupdateorderstatus_9", "** Algunos artículos de su orden no tienen stock disponible. Por favor denos algún tiempo para completar la orden." dictLanguage.Add "spanish_autoupdateorderstatus_10", "La orden ya ha sido procesada." dictLanguage.Add "spanish_message_1", "Atención" dictLanguage.Add "spanish_generalconditions_1", "Condiciones Generales" dictLanguage.Add "spanish_generalconditions_2", "No hay Condiciones Generales definidas para esta tienda." dictLanguage.Add "spanish_generalconditions_3", "Cerrar" dictLanguage.Add "spanish_selectshipment_1", "Tipo de envío" dictLanguage.Add "spanish_selectshipment_2", "Seleccionar" dictLanguage.Add "spanish_selectshipment_3", "Su e-mail ha sido registrado en esta tienda. Usted puede recuperar su antigua contraseña o registrarse con una nueva." dictLanguage.Add "spanish_selectshipment_4", "No hay envíos para su selección de Provincia/País/Código Postal y contenidos del carro." dictLanguage.Add "spanish_selectshipment_5", "Debe seleccionar la Provincia o ingresar Otra Provincia" dictLanguage.Add "spanish_optauctionsearchform_1", "Búsqueda de Subasta" dictLanguage.Add "spanish_optauctionsearchform_2", "Categoría" dictLanguage.Add "spanish_optauctionsearchform_3", "Todos" dictLanguage.Add "spanish_optauctionsearchform_4", "Palabra Clave" dictLanguage.Add "spanish_optauctionsearchform_5", "Buscar" dictLanguage.Add "spanish_optauctionsearchexec_1", "El cliente especificado no es válido" dictLanguage.Add "spanish_optauctionsearchexec_2", "No hay Subastas activas en esta búsqueda" dictLanguage.Add "spanish_optauctiondetails_1", "Ver" dictLanguage.Add "spanish_optauctiondetails_2", "Producto: " dictLanguage.Add "spanish_optauctiondetails_3", "Desde: " dictLanguage.Add "spanish_optauctiondetails_4", " ~ Hacia: " dictLanguage.Add "spanish_optauctiondetails_5", "Ofertas: " dictLanguage.Add "spanish_optauctiondetails_6", "~ Último: " dictLanguage.Add "spanish_optauctionofferform_1", "Debe especificar el ID de la Subasta." dictLanguage.Add "spanish_optauctionofferform_2", "Error en auctionOfferForm: " dictLanguage.Add "spanish_optauctionofferform_3", "No hay Subastas activas con ese ID" dictLanguage.Add "spanish_optauctionofferform_4", "Formulario de Oferta" dictLanguage.Add "spanish_optauctionofferform_5", "Fecha de inicio:" dictLanguage.Add "spanish_optauctionofferform_6", "Fecha de finalización:" dictLanguage.Add "spanish_optauctionofferform_7", "Precio de inicio:" dictLanguage.Add "spanish_optauctionofferform_8", "Precio de finalización:" dictLanguage.Add "spanish_optauctionofferform_9", "Precio actual:" dictLanguage.Add "spanish_optauctionofferform_10", "Ofertas:" dictLanguage.Add "spanish_optauctionofferform_11", "Usted ofrece:" dictLanguage.Add "spanish_optauctionofferexec_0", "No hay Subastas activas con ese ID." dictLanguage.Add "spanish_optauctionofferexec_1", "LA Subasta seleccionada está cerrada." dictLanguage.Add "spanish_optauctionofferexec_2", "Su oferta debe superar el precio actual por lo menos en el valor mínimo para esta Subasta." dictLanguage.Add "spanish_optauctionofferexec_3", "Su oferta supera la oferta máxima posible para esta Subasta." dictLanguage.Add "spanish_optauctionofferexec_4", "La oferta no supera la cantidad mínima posible para esta Subasta." dictLanguage.Add "spanish_optauctionofferexec_5", "Notificación de adjudicación de la Subasta." dictLanguage.Add "spanish_optauctionofferexec_6", "Usted puede utilizar el siguiente código de descuento para comprar en http://" dictLanguage.Add "spanish_optauctionofferexec_7", "Nueva oferta para la Subasta: " dictLanguage.Add "spanish_optauctionofferexec_8", "Un cliente ha ganado la Subasta" dictLanguage.Add "spanish_optauctionofferexec_9", "Su oferta de subasta ha sido superada." dictLanguage.Add "spanish_optauctionofferexec_10", "Usted ofrece por " dictLanguage.Add "spanish_optauctionofferexec_11", "Oferta hecha" dictLanguage.Add "spanish_optauctionofferexec_12", "Usted ha ganado esta Subasta. Felicitaciones!. Recibirá un e-mail con detalles." dictLanguage.Add "spanish_optauctionofferexec_13", "Gracias por participar." dictLanguage.Add "spanish_optauctionofferexec_14", "El código de descuento para esta subasta es: " dictLanguage.Add "spanish_optauctionofferexec_15", "Si tiene alguna duda por favor escríbanos a " dictLanguage.Add "spanish_optauctionofferexec_16", " Ha sido suparada." dictLanguage.Add "spanish_optauctionofferexec_17", "Regresar" dictLanguage.Add "spanish_optauctionofferexec_18", " al formulario de oferta." dictLanguage.Add "spanish_optauctionofferexec_19", "Usted ha ganado la subasta por " dictLanguage.Add "spanish_optauctionofferexec_20", " en " dictLanguage.Add "spanish_optauctionofferexec_21", "Usted tiene la última oferta para este producto, no puede ofrecer nuevamente." dictLanguage.Add "spanish_optauctionlistall_1", "No hay Subastas activas en este momento." dictLanguage.Add "spanish_optauctionlistall_2", "Subastas Activas" dictLanguage.Add "spanish_optauctionlistall_3", "Precio actual" dictLanguage.Add "spanish_optauctionlistall_4", "Desde: " dictLanguage.Add "spanish_optauctionlistall_5", " ~ Hasta: " dictLanguage.Add "spanish_verifyDbSession_1", "DbSession inválido. Los datos de la sesión serán inicializados." dictLanguage.Add "spanish_dynamicindex_1", "No hay artículos marcados para que sean mostrados en la portada de la tienda." dictLanguage.Add "spanish_dynamicindex_2", "Más información..." dictLanguage.Add "spanish_dynamicindex_3", "Nuestro precio es " dictLanguage.Add "spanish_dynamicindex_4", "Vea nuestras Subastas" dictLanguage.Add "spanish_dynamicindex_5", "Vea todos los productos de nuestro proveedor destacado" dictLanguage.Add "spanish_dynamicindex_6", "Ofertas" dictLanguage.Add "spanish_dynamicindex_7", "Más vendidos" dictLanguage.Add "spanish_getsessiondata_1", "Sesión perdida. Por favor cominece nuevamente." dictLanguage.Add "spanish_optGetRelatedProducts_1", "Ver también: " dictLanguage.Add "spanish_listCategoriesTree_1", "No se encontraron categorías" dictLanguage.Add "spanish_listCategoriesTree_2", "Árbol de categorías" dictLanguage.Add "spanish_headercart_1", "Usted tiene " dictLanguage.Add "spanish_headercart_2", " items " dictLanguage.Add "spanish_headercart_3", " en su " dictLanguage.Add "spanish_headercart_4", "carro" dictLanguage.Add "spanish_headercart_5", "Subtotal: " dictLanguage.Add "spanish_headercart_6", "Terminar" dictLanguage.Add "spanish_footer_1", "Inicio" dictLanguage.Add "spanish_footer_2", "Ofertas" dictLanguage.Add "spanish_footer_3", "Más vendidos" dictLanguage.Add "spanish_footer_4", "Categorías" dictLanguage.Add "spanish_footer_5", "Arbol de categorías" dictLanguage.Add "spanish_footer_6", "Búsqueda avanzada" dictLanguage.Add "spanish_footer_7", "Newsletter" dictLanguage.Add "spanish_footer_8", "Novedades" dictLanguage.Add "spanish_footer_9", "Carro" dictLanguage.Add "spanish_footer_10", "Terminar" dictLanguage.Add "spanish_footer_11", "Registro de cliente" dictLanguage.Add "spanish_footer_12", "Menú" dictLanguage.Add "spanish_footer_13", "Subastas" dictLanguage.Add "spanish_footer_14", "Esta es una demostración del carro de compras Comersus. La empresa y el sitio son fictícios, los productos no están a la venta." dictLanguage.Add "spanish_header_1", "INICIO" dictLanguage.Add "spanish_header_2", "CATEGORIAS" dictLanguage.Add "spanish_header_3", "RASTREO ORDENES" dictLanguage.Add "spanish_header_4", "CARRO" dictLanguage.Add "spanish_header_5", "WAP" dictLanguage.Add "spanish_header_6", "TERMINAR" ' >>>>if you are installing the free multilanguage package paste from here<<<<< ' >>>>if you are installing the free multilanguage package paste until here<<<< ' end language definitions function clearLanguage() ' clear the dictionary. on error resume next clearLanguage = dictLanguage.removeAll set clearLanguage = nothing end function %>
Greencastle Soap Company    
<% ' Comersus 3.90 Sophisticated Cart ' Developed by CopyRight Rodrigo S. Alhadeff ' March-2002 ' Open Source License can be found at License.txt ' http://www.comersus.com ' Details: Dynamic Header with cart totals %> <% ' Comersus 3.90 Sophisticated Cart ' Developed by CopyRight Rodrigo S. Alhadeff ' March-2002 ' Open Source License can be found at documentation/readme.txt ' http://www.comersus.com ' Details: misc currency functions %> <% function money(number) ' round number money = round(number,2) if pDecimalSign="," then ' replace . by , money = replace(money,".",",") else ' replace , by . money = replace(money,",",".") end if ' locate dec division indexPoint = instr(money, pDecimalSign) ' for integer, add .00 if indexPoint=0 then money = Cstr(money)+pDecimalSign+"00" end if ' calculate if 0 or 00 moneyLarge = len(money) decPart = right(money,moneyLarge-indexPoint) ' add to original numbers for g=0 to (1- (moneyLarge-indexPoint)) money = Cstr(money)+"0" next end function %> <% dim baseUrl baseUrl = "/comersus/store/" %> <% pHeaderCartItems=session("cartItems") if pHeaderCartItems="" then pHeaderCartItems =0 session("cartItems") =0 end if pHeaderCartSubtotal=session("cartSubTotal") if pHeaderCartSubtotal="" then pHeaderCartSubtotal =0 session("cartSubtotal") =0 end if Response.Write "Your Order:
" Response.Write "" & dictLanguage.Item(Session("language") & "_headercart_1") & "" & pHeaderCartItems & dictLanguage.Item(Session("language")&"_headercart_2") & "" & dictLanguage.Item(Session("language")&"_headercart_3") & "" & dictLanguage.Item(Session("language")&"_headercart_4") & "" Response.Write "
" & dictLanguage.Item(Session("language")&"_headercart_5") & pcurrencySign & money(pHeaderCartSubtotal) & "| " & dictLanguage.Item(Session("language")&"_headercart_6") & "
" %>
Product About Us Contact Us Events Wholesale Soap Making Recipes, Thoughts & More at Sandy's Soapbox
Soaps
 
Each bar contains a soothing blend of tallow for hardness, coconut oil for lather and nearly thirty percent olive oil for it's wonderful skin softening properties.
  
Soaps Lotions Balms
pg. 1 | 2 | 3
Description / Uses $4.50 ea.
3 for $12
Almond Scrub
Cornmeal is added to this creamy brown bar increasing scrubbability. Select Qty:
Perfect for gardeners, mechanics, ranchers, the working folks.
 
Anise
Anise
Sky blue soap that smells just like black licorice. Yum!
Good for fishermen and hunters as it masks the human scent.  
 
China Rain
China Rain
A clean musky scent, this pale pink bar is one of our best sellers.
   
 
Cinnamon
Cinnamon
A lusscious blend of spicy cinnamon and sweet vanilla.
Keep this one in the kitchen to help remove onion and garlic odors from your hands.
 
add
  pg. 1 | 2 | 3
Products | About Us | Contact Us | Events | Wholesale | Home
©2007 Greencastle Soap Company, Inc.- 203 N. Stone, Spokane, WA 99202 - ph. 800.350.6610
Site development by Civic Mind Media