<%
'Verifica se possui descrição da página institucional
if pagina_description <> "" then
%>
<meta name="description" content="<%=removehtmltags(pagina_description)%>" />
<%
elseif request("infoid")<>"" then

set infodesc=ocinfo.execute("select mn_descricao, mn_codigo from tab_menu where mn_codigo="&request("infoid"))
	info_description = infodesc("mn_descricao")
infodesc.close
set infodesc=nothing
%>
  <%if info_description<>"" then%>
<meta name="description" content="<%=removehtmltags(info_description)%>" />
  <%end if%>
<%
elseif request("infoid_noticia") <>"" and request("infoid_noticia")<>"geral" then

set notdesc=ocinfo.execute("select mn_descricao, mn_codigo from tab_noticias where mn_codigo="&request("infoid_noticia")) 
	not_description = notdesc("mn_descricao")
notdesc.close
set notdesc=nothing
%>
  <%if not_description<>"" then%>
<meta name="description" content="<%=removehtmltags(not_description)%>" />
  <%end if%>
<%
else
%>
  <%if site_descricao<>"" then%>
<meta name="description" content="<%=removehtmltags(site_descricao)%>" />
  <%end if%>
<%end if%>