%
' Comersus Shopping Cart
' Comersus Open Technologies
' United States
' Software License can be found at License.txt
' http://www.comersus.com
' Details: show general conditions
%>
<%
on error resume next
dim connTemp, rsTemp
' get settings
pStoreFrontDemoMode = getSettingKey("pStoreFrontDemoMode")
pCurrencySign = getSettingKey("pCurrencySign")
pDecimalSign = getSettingKey("pDecimalSign")
pCompany = getSettingKey("pCompany")
pCompanySlogan = getSettingKey("pCompanySlogan")
pAboutUsLink = getSettingKey("pAboutUsLink")
pHeaderKeywords = getSettingKey("pHeaderKeywords")
pAuctions = getSettingKey("pAuctions")
pListBestSellers = getSettingKey("pListBestSellers")
pNewsLetter = getSettingKey("pNewsLetter")
pPriceList = getSettingKey("pPriceList")
pStoreNews = getSettingKey("pStoreNews")
' get conditions
mySql="SELECT conditions FROM conditions WHERE idStore="&pIdStore
call getFromDatabase (mySql, rsTemp, "generalConditionsWindow")
if rsTemp.eof then
response.redirect "comersus_message.asp?message="&Server.Urlencode(getMsg(474,"Conditions cannot be found in this store."))
end if
%>
<%=pCompany%> <%=getMsg(475,"terms & conditions")%>
<%=rsTemp("conditions")%>
<%call closeDb()%>