%
' Comersus Shopping Cart
' Comersus Open Technologies
' United States
' Software License can be found at License.txt
' http://www.comersus.com
' Details: final screen with order # and confirmation
%>
<%
on error resume next
dim connTemp, rsTemp, rsTemp3, pRowsShown, pMaxPopularity
' get settings
pStoreFrontDemoMode = getSettingKey("pStoreFrontDemoMode")
pCurrencySign = getSettingKey("pCurrencySign")
pDecimalSign = getSettingKey("pDecimalSign")
pCompany = getSettingKey("pCompany")
pCompanySlogan = getSettingKey("pCompanySlogan")
pAuctions = getSettingKey("pAuctions")
pListBestSellers = getSettingKey("pListBestSellers")
pNewsLetter = getSettingKey("pNewsLetter")
pPriceList = getSettingKey("pPriceList")
pStoreNews = getSettingKey("pStoreNews")
pOneStepCheckout = getSettingKey("pOneStepCheckout")
pEmailAdmin = getSettingKey("pEmailAdmin")
pExitSurvey = getSettingKey("pExitSurvey")
pShowNews = getSettingKey("pShowNews")
pIdCustomer = getSessionVariable("idCustomer",0)
pIdCustomerType = getSessionVariable("idCustomerType",1)
pIdOrder = getUserInput(request.querystring("idOrder"),20)
%>
<%=getMsg(582,"order confirmation")%>
<%=getMsg(583,"thanks, order")%> <%=pIdOrder%>
<%=getMsg(584,"concerns")%> <%=getMsg(585,"here")%>
<%if pStoreFrontDemoMode="-1" then%>
<%=getMsg(497,"thanks for testing")%>
<%=getMsg(498,"visit")%> <%=getMsg(499,"admin demo")%>
<%end if%>
<%call closeDb()%>