// JScript source code

// JavaScript Document

function Http(){
	
	try{this.xmlhttp = new XMLHttpRequest();}
	catch(trymicrosoft){
		try
		{this.xmlhttp = new ActiveXObject("Msxml2.XMLHTTP");}
		catch(othermicrosoft){
			try{this.xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");}
			catch(failed){this.xmlhttp = null;}
		}
	}
}
function mostraVestibular()
{
    var url = "m_conteudoinformativo/ConteudoInformativo.php?idmenuitem=4";
	var div = document.getElementById('ma_vestibularIntroducaoTexto');
	
	httpConteudoInformativo = null;
	var httpConteudoInformativo = new Http();
	httpConteudoInformativo.xmlhttp.open("GET", url,true);
	httpConteudoInformativo.xmlhttp.onreadystatechange = function(){
		                            div.innerHTML = 'Carregando...<br /><img src="img/carregando.gif" /><br />';
									if(httpConteudoInformativo.xmlhttp.readyState == 4){
										if(httpConteudoInformativo.xmlhttp.status == 200){
		                                    div.innerHTML = httpConteudoInformativo.xmlhttp.responseText;
                                            menu_vestibular(1);
										 }
									 }
								  };
	httpConteudoInformativo.xmlhttp.send(null);
}


function menu_vestibular(id)
{
  /* Recupera Valor para Controle Menus */
  document.getElementById('valorFlash').value = id;
  /*Fim*/
  
  escondeFrameVestibular('ivestibularcentro');
  if ((id>=1)  && (id<=2))
    mostraCategoriaDica('descricaosub',id);
  else
    if (id==3)
      mostraFrameVestibular('ivestibularcentro','ma_vestibular/PesqInstituicaoCurso.php?s_idnivel=8');
    else
	    if (id==4)
		  mostraFrameVestibular('ivestibularcentro','ma_vestibular/Agenda.php?s_idtipoanuncio=10');
	    else
		  if (id==5)
		    mostraFrameVestibular('ivestibularcentro','ma_vestibular/ListaAprovados.php?s_idtipoanuncio=12');
	      else
		    if (id==6)
		      mostraFrameVestibular('ivestibularcentro','ma_vestibular/CandidatoVaga.php?s_idtipoanuncio=11');
            else
			  if (id==7)
			    mostraFrameVestibular('ivestibularcentro','ma_vestibular/Download_list.php?s_idtipoanuncio=16');
			  else
			  {
			    var divcategorias = document.getElementById('categorias');
				divcategorias.innerHTML='';
				var divdescricaosub = document.getElementById('descricaosub');
				divdescricaosub.innerHTML='';
				var divdicas = document.getElementById('dicas');
				divdicas.innerHTML='';
				var divdescricao = document.getElementById('descricao');
				divdescricao.innerHTML='';
			  }
}

function mostraFrameVestibular(frame,url)
{
  // esconde a div
  var div = document.getElementById('categorias');
  div.style.display = "none";
  var divc = document.getElementById('conteudo');
  divc.style.display = "none";

  // mostra frame
  var auxframe = document.getElementById(frame);
  auxframe.src=url;
  auxframe.style.display = "";
}
function escondeFrameVestibular(frame)
{
  //esconde frame
  var auxframe = document.getElementById(frame);
  auxframe.style.display = "none";

  //mostra div
  var div = document.getElementById('categorias');
  div.style.display = "";
  var divc = document.getElementById('conteudo');
  divc.style.display = "";
}


