<%
'Verifica se possui palavras-chave da página institucional
if pagina_keywords <> "" then
%>
<meta name="keywords" content="<%=removehtmltags(pagina_keywords)%>" />
<%
elseif request("infoid")<>"" then

set infokey=ocinfo.execute("select mn_desc, mn_codigo from tab_menu where mn_codigo="&request("infoid"))
	info_keywords = infokey("mn_desc")
infokey.close
set infokey=nothing
%>
  <%if info_keywords<>"" then %>
<meta name="keywords" content="<%=removehtmltags(info_keywords)%>" />
  <%end if%>
<%
elseif request("infoid_noticia") <>"" and request("infoid_noticia")<>"geral" then

set notkey=ocinfo.execute("select mn_keywords, mn_codigo from tab_noticias where mn_codigo="&request("infoid_noticia")) 
	not_keywords = notkey("mn_keywords")
notkey.close
set notkey=nothing
%>
  <%if not_keywords<>"" then %>
<meta name="keywords" content="<%=removehtmltags(not_keywords)%>" />
  <%end if%>
<%
else
%>
  <%if site_keywords<>"" then %>
<meta name="keywords" content="<%=removehtmltags(site_keywords)%>" />
  <%end if%>
<%end if%>