var xmlHttp

function showSecao(str)
{
if (str.length==0)
  { 
  document.getElementById("boxConteudo").innerHTML="";
  return;
  }
xmlHttp=GetXmlHttpObject()
if (xmlHttp==null)
  {
  alert ("Your browser does not support AJAX!");
  return;
  } 
document.all['boxConteudo'].style.visibility="visible";
var url="http://www.joaoserralvo.com/listaConteudoSecao.asp";
url=url+"?Secao="+str;
xmlHttp.onreadystatechange=stateChanged;
xmlHttp.open("GET",url,true);
xmlHttp.send(null);
} 

function showArtigo(str)
{
if (str.length==0)
  { 
  document.getElementById("boxTexto").innerHTML="";
  return;
  }
xmlHttp=GetXmlHttpObject()
if (xmlHttp==null)
  {
  alert ("Your browser does not support AJAX!");
  return;
  } 
document.all['boxTexto'].style.visibility="visible";
document.all['boxConteudo'].style.visibility="hidden";
var url="http://www.joaoserralvo.com/ExibeTexto.asp";
url=url+"?NewsID="+str;
xmlHttp.onreadystatechange=stateChanged;
xmlHttp.open("GET",url,true);
xmlHttp.send(null);
} 

function stateChanged() 
{ 
if (xmlHttp.readyState==4)
{ 
document.getElementById("boxTexto").innerHTML=xmlHttp.responseText;
}
}

function GetXmlHttpObject()
{
var xmlHttp=null;
try
  {
  // Firefox, Opera 8.0+, Safari
  xmlHttp=new XMLHttpRequest();
  }
catch (e)
  {
  // Internet Explorer
  try
    {
    xmlHttp=new ActiveXObject("Msxml2.XMLHTTP");
    }
  catch (e)
    {
    xmlHttp=new ActiveXObject("Microsoft.XMLHTTP");
    }
  }
return xmlHttp;
}