<!--
function manutencao()
{
	alert('Estamos em desenvolvimento, algumas funcionalidades \n     não estao disponíveis. Por favor aguarde!');
	return;
}
function OK()
{
    var from = document.getElementById("frm")
    if (document.getElementById("search").value == ''){
    alert('informe a busca');
    document.getElementById("search").focus;
    return;
    }
    from.action = 'site_search.asp';
    from.submit(); 
}
/*function Login()
{
    var Form = document.getElementById("frmForm")
        if (document.getElementById("txtLogin").value == '' ){
      alert('Informe o login');
      document.getElementById("txtLogin").focus();
      return;  
   }   
        
    if (document.getElementById("txtSenha").value == '' ){
      alert('Informe a Senha');
      document.getElementById("txtSenha").focus();
      return;  
   }   
        
		Form.action = 'login.asp';
	    Form.submit();
}

function logout()
{
    var Form = document.getElementById("frmForm")
	Form.action = 'login.asp?err=2';
	Form.submit();
}
*/
function EsqueceuSenha()
{
	window.open('pop_esqueceu_senha.asp','','TOP=0,LEFT=0,WIDTH=334,HEIGHT=300,SCROLLBARS=YES');
}
function EspecificarTemaApresentacao()
	{
		if ( document.getElementById("cboTema").electedIndex != 0)
			document.location = 'idx_biblioteca_apresentacoe.asp?tema=' + document.getElementById("cboTema").options[document.getElementById("cboTema").selectedIndex].value;
	}
	
function EspecificarTemaDVD()
{
	if ( document.getElementById("cboTema").electedIndex != 0)
		document.location = 'idx_biblioteca_dvd.asp?tema=' + document.getElementById("cboTema").options[document.getElementById("cboTema").selectedIndex].value;
}

function EspecificarTemaRevistas()
{
	if ( document.getElementById("cboTema").electedIndex != 0)
		document.location = 'idx_biblioteca_revistas.asp?tema=' + document.getElementById("cboTema").options[document.getElementById("cboTema").selectedIndex].value;
}

function EspecificarTemaVideo()
{
	if ( document.getElementById("cboTema").electedIndex != 0)
		document.location = 'idx_biblioteca_video_cassete.asp?tema=' + document.getElementById("cboTema").options[document.getElementById("cboTema").selectedIndex].value;
}
function EspecificarTema()
{
	if ( document.getElementById("cboTema").electedIndex != 0)
		document.location = 'idx_biblioteca_arq.eletroni.asp?tema=' + document.getElementById("cboTema").options[document.getElementById("cboTema").selectedIndex].value;
}


function RemontarCardapios (pAvancar) {
   frmResultado.action = 'idx_fotos_grupodeestudos.asp?Avancar=' + pAvancar;

   frmResultado.submit();
}


function MostrarCardapio (pCardapio , pAvancar) {
   frmResultado.action = 'idx_fotos_grupodeestudos.asp?CodCardapio=' + pCardapio + '&Avancar=' + pAvancar;

   frmResultado.submit();
}


function Remontarfotos (pAvancar) {
   frmResultado.action = 'idx_pmi3s_fotos.asp?Avancar=' + pAvancar;

   frmResultado.submit();
}


function Mostrarfotos (pCardapio , pAvancar) {
   frmResultado.action = 'idx_pmi3s_fotos.asp?CodCardapio=' + pCardapio + '&Avancar=' + pAvancar;

   frmResultado.submit();
}

function VisualizarArquivo(intDocumento)
{    
	Frm.action = 'include/file.asp?tb=documento&ID=' + intDocumento;
	Frm.target = '_blank';
	Frm.submit();
}
-->