function LeCookie(nome)
{
 if (document.cookie.length > 0)
 {
  nome += "="
  pos = document.cookie.indexOf(nome)
  if (pos != -1)
  {
   pos += nome.length
   fim = document.cookie.indexOf(";",pos)
   if (fim == -1) fim = document.cookie.length
    return(unescape(document.cookie.substring(pos,fim)))
   }
   else
   {
    return(null)
   }
 }
}

/*
cCateg = LeCookie("UOL_ID")

if (cCateg!=null) {document.write("<iframe src=http://gamesauth.uol.com.br:8080/iframeGames.html title=info width=750 border=0 height=25 frameborder=0 scrolling=no></iframe>")} else {document.write("<iframe src=http://jogos.uol.com.br/servidores/iframe.htm title=info width=750 border=0 height=25 frameborder=0 scrolling=no></iframe>")};
*/