%@LANGUAGE="VBSCRIPT" CODEPAGE="65001"%>
<% Response.Charset="UTF8" %>
<%
nLingua = Request("idioma")
if nLingua = "" then
nLingua = 1
end if
'****************************************************
'* Pega informacoes do browse
'****************************************************
cBrowser = Request.ServerVariables("HTTP_USER_AGENT")
if instr(uCase(cBrowser),"IPAD") > 0 then
ciPad = true
end if
if instr(uCase(cBrowser),"SAFARI") > 0 then
cHand = "pointer"
elseif instr(uCase(cBrowser),"MOZILLA") > 0 then
cHand = "pointer"
else
cHand = "hand"
end if
cInclude = Request("Include")
if cInclude = "" then
cInclude = "principal"
end if
%>