﻿// JScript File
function mostraMapa() {
    var url, altura, largura;
    url = "/images/mapas/mapa.htm";
    altura = 620;
    largura = 770;
    x = (screen.width - largura) / 2;
    y = (screen.height - altura) / 2;
    if (navigator.appName == "Netscape") {
        mapa = window.open(url, 'mapa', 'toolbar=no,resizable=no,location=no,menubar=no,status=no,scrollbars=no,copyhistory=no,directories=no,width=' + (largura + 10) + ',height=' + (altura + 10) + ',screenX=' + x + ',screenY=' + y);
        mapa.focus();
    }
    else {
        mapa = window.open(url, 'mapa', 'toolbar=no,resizable=no,location=no,menubar=no,status=no,scrollbars=no,copyhistory=no,directories=no,width=' + largura + ',height=' + altura + ',left=' + x + ',top=' + y);
        mapa.focus();
    }
}

/* Determina os dados do campo */
function tipo_dados(obj_input, tipo, caixa) {

    /* Vamos atribuir o value a uma string */
    string = new String(obj_input.value);

    myString = new String(string)

    switch (tipo) {
        case "AN":
            var valid = "1234567890abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ";
            break;
        case "CNPJ":
            var valid = "1234567890.-/";
            break;
        case "N":
            var valid = "1234567890";
            break;
        case "A":
            var valid = "abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ ";
            break;
        case "C": /*Moeda*/
            var valid = "1234567890,";
            break;
        case "P": /*Porcentagem*/
            var valid = "1234567890,";
            break;
        case "T": /*Telefone*/
            var valid = "1234567890xx() ";
            break;
        case "AN+":
            var valid = "1234567890abcdefghijklmnopqrstuvwxyzáàãâéêíóôõúüçñABCDEFGHIJKLMNOPQRSTUVWXYZÁÀÃÂÉÊÍÓÔÕÚÙÜÇÑ!@#$%&*()ºª-+={}[]?/:;<>,.\|_ "
            break;
        case "AN-": //Execeto ;
            var valid = "1234567890abcdefghijklmnopqrstuvwxyzáàãâéêíóôõúüçñABCDEFGHIJKLMNOPQRSTUVWXYZÁÀÃÂÉÊÍÓÔÕÚÙÜÇÑ!@#$%&*()ºª-+={}[]?/:<>,.\|_ "
            break;
    }

    for (var i = 0; i < myString.length; i++) {
        caracter = string.charAt(i);
        if (valid.indexOf(string.charAt(i)) < 0 && string.charCodeAt(i) != 13 && string.charCodeAt(i) != 10) {
            /*Vamos escolher a mensagem para o usuário*/
            switch (tipo) {
                case "AN":
                    alert("Utilize apenas números e letras sem acentuação.");
                    obj_input.focus();
                    break;
                case "CNPJ":
                    alert("Utilize apenas números e os sinas: . (ponto) - (traço) e / (barra)");
                    obj_input.focus();
                    break;
                case "N":
                    alert("Utilize apenas números.");
                    obj_input.focus();
                    break;
                case "A":
                    alert("Utilize apenas letras sem acentuação.");
                    obj_input.focus();
                    break;
                case "C":
                    alert("Utilize apenas números e virgula para separar as casas decimais.");
                    obj_input.focus();
                    break;
                case "P":
                    alert("Utilize apenas números e pontos para separar as casas decimais.");
                    obj_input.focus();
                    break;
                case "T":
                    alert("Utilize o campo da seguinte forma: (9xx99) 99999999");
                    obj_input.focus();
                    break;
                case "AN+":
                    alert("O caracter    " + caracter + "    não é permitido neste campo.");
                    obj_input.focus();
                    obj_input.select(caracter);
                    break;
                case "AN-":
                    alert("O caracter    " + caracter + "    não é permitido neste campo.");
                    obj_input.focus();
                    obj_input.select(caracter);
                    break;
            }
            return;
        }
    }
    if (caixa == "A") { obj_input.value = string.toUpperCase(); }
    return;
}

function ContaTexto(obj, contador, limite) {
    var text1 = new String(obj.value);
    contador.value = limite - text1.length;
    if (contador.value <= 0) {
        alert("Utilize no máximo " + limite + " caracteres.");
        obj.value = text1.substring(0, limite);
        contador.value = 0;
    }
}

function abreJanela(altura, largura, url) {
    x = (screen.width - largura) / 2;
    y = (screen.height - altura) / 2;
    if (navigator.appName == "Netscape") {
        janela = window.open(url, 'janela', 'titlebar=no,toolbar=no,resizable=yes,location=no,menubar=no,status=no,scrollbars=yes,copyhistory=no,directories=no,width=' + (largura + 10) + ',height=' + (altura + 10) + ',screenX=' + x + ',screenY=' + y);
    }
    else {
        janela = window.open(url, 'janela', 'titlebar=no,toolbar=no,resizable=no,location=no,menubar=no,status=no,scrollbars=yes,copyhistory=no,directories=no,width=' + largura + ',height=' + altura + ',left=' + x + ',top=' + y);
    }
    janela.focus();
}

function calendario(objRet) {
    var url, altura, largura;
    url = "/calendario.asp?objRet=" + objRet;
    altura = 170;
    largura = 200;
    x = (screen.width - largura) / 2;
    y = (screen.height - altura) / 2;
    cal = window.open(url, 'cal', 'toolbar=no,resizable=no,location=no,menubar=no,status=no,scrollbars=no,copyhistory=no,directories=no,width=' + largura + ',height=' + altura + ',left=' + x + ',top=' + y);
    cal.focus();
}

function buscaImg(tamanho, busca, objAlvoId, objAlvoNome) {
    if (busca.value == "") { alert("Digite uma palavra que identifique a imagem que deseja inserir e clique novamente em VER."); busca.focus(); return; }
    else {
        if (busca.value.length < 3) { alert("Informe uma string com mais de 3 caracteres."); return; }
        else { abreJanela(400, 516, "/adm/imagens_listar.asp?nome_imagem=" + busca.value + "&tamanho=" + tamanho + "&objAlvoId=" + objAlvoId + "&objAlvoNome=" + objAlvoNome); return; } 
    }
}

function buscaArq(tamanho, busca, objAlvoId, objAlvoNome) {
    if (busca.value == "") { alert("Informe uma string para pesquisar o arquivo."); busca.focus(); return; }
    else {
        if (busca.value.length < 3) { alert("Informe uma string com mais de 3 caracteres."); return; }
        else { abreJanela(400, 516, "/adm/arquivos_listar.asp?nome_arquivo=" + busca.value + "&tamanho=" + tamanho + "&objAlvoId=" + objAlvoId + "&objAlvoNome=" + objAlvoNome); return; } 
    }
}
function buscaArqMeus(tamanho, busca, objAlvoId, objAlvoNome) {
    abreJanela(600, 816, "/adm/arquivos_listar.asp?MeusArquivos=true&objAlvoId=" + objAlvoId + "&objAlvoNome=" + objAlvoNome); return;
}

function buscaUsuario(busca, objAlvoId, objAlvoNome) {
    if (busca.value == "") { alert("Informe uma string para pesquisar o Usuário."); busca.focus(); return; }
    else {
        if (busca.value.length < 3) { alert("Informe uma string com mais de 3 caracteres."); return; }
        else { abreJanela(400, 600, "/adm/busca_usuario.asp?nome_usuario=" + busca.value + "&objAlvoId=" + objAlvoId + "&objAlvoNome=" + objAlvoNome); return; } 
    }
}

function buscaCurso(busca, objAlvoId, objAlvoCod, objAlvoNome) {
    if (busca.value == "") { alert("Informe uma string para pesquisar o Curso."); busca.focus(); return; }
    else {
        if (busca.value.length < 3) { alert("Informe uma string com mais de 3 caracteres."); return; }
        else { abreJanela(400, 600, "/ga/ga_busca_curso.asp?nome_curso=" + busca.value + "&objAlvoId=" + objAlvoId + "&objAlvoCod=" + objAlvoCod + "&objAlvoNome=" + objAlvoNome); return; } 
    }
}

function buscaProb(busca, objAlvoId, objAlvoNome) {
    if (busca.value == "") { alert("Informe uma string para pesquisar o Problema."); busca.focus(); return; }
    else {
        if (busca.value.length < 3) { alert("Informe uma string com mais de 3 caracteres."); return; }
        else { abreJanela(400, 600, "/adm/os/busca_prob.asp?nome_problema=" + busca.value + "&objAlvoId=" + objAlvoId + "&objAlvoNome=" + objAlvoNome); return; } 
    }
}

function mostraLayout(layout) {
    largura = 230;
    altura = 310;
    x = (screen.width - largura) / 2;
    y = (screen.height - altura) / 2;
    url = "/layouts/layout_" + layout + ".htm"
    if (navigator.appName == "Netscape") { layout = window.open(url, 'layout', 'toolbar=no,resizable=no,location=no,menubar=no,status=no,scrollbars=no,copyhistory=no,directories=no,width=' + (largura + 10) + ',height=' + (altura + 10) + ',screenX=' + x + ',screenY=' + y); }
    else { layout = window.open(url, 'layout', 'toolbar=no,resizable=no,location=no,menubar=no,status=no,scrollbars=no,copyhistory=no,directories=no,width=' + largura + ',height=' + altura + ',left=' + x + ',top=' + y); }
    layout.focus();
    return;
}

function ShowHideSelect(obj) {
    var nomeObj = obj.name;
    var f = document.go;
    for (i = 0; i < f.length; i++) {
        if (f.elements[i].name != nomeObj) {
            if (f.elements[i].name == "id_guia" || f.elements[i].name == "id_unidade" || f.elements[i].name == "id_escola" || f.elements[i].name == "id_curso") {
                f.elements[i].selectedIndex = 0;
                f.elements[i].style.visibility = "hidden";
            } 
        } 
    }
    obj.style.visibility = "visible";
    if (obj.type != "hidden") { obj.focus(); }
    return;
}

function checkLocal(obj) {
    if (obj.selectedIndex == 0) { alert(obj.options[obj.selectedIndex].text); obj.focus(); return; }
}

function albumImagens(id_conteudo) {
    abreJanela(570, 600, "/adm/conteudo_album.asp?id_conteudo=" + id_conteudo);
}

function findObj(n, d) {
    var p, i, x; if (!d) d = document; if ((p = n.indexOf("?")) > 0 && parent.frames.length) {
        d = parent.frames[n.substring(p + 1)].document; n = n.substring(0, p);
    }
    if (!(x = d[n]) && d.all) x = d.all[n]; for (i = 0; !x && i < d.forms.length; i++) x = d.forms[i][n];
    for (i = 0; !x && d.layers && i < d.layers.length; i++) x = findObj(n, d.layers[i].document); return x;
}

function shDiv() {
    var i, p, v, obj, args = shDiv.arguments;
    for (i = 0; i < (args.length - 2); i += 3)
        if ((obj = findObj(args[i])) != null) {
        v = args[i + 2];
        if (obj.style) { obj = obj.style; v = (v == 'show') ? 'visible' : (v = 'hide') ? 'hidden' : v; }
        obj.visibility = v;
    }
}

function validaPesq(pesqForm, obj, len) {
    var s = new String(obj.value);
    if (s.length < len) { alert("Informe uma palavra com no mínimo " + len + " caracteres."); obj.focus(); return; }
    pesqForm.submit();
}

function ajustaDivs() {
    var wScreen = screen.width;
    if (wScreen == 1024) {
        obj = findObj("CursoGrade");
        obj.style.left = "118";
        obj = findObj("CursoObjetivo");
        obj.style.left = "118";
        obj = findObj("CursoDescricao");
        obj.style.left = "118";
        obj = findObj("CursoInformacoes");
        obj.style.left = "118";
        obj = findObj("CursoMercado");
        obj.style.left = "118";
        obj = findObj("noticiascursos");
        obj.style.left = "118";
        /*
        obj = findObj("agendaCurso");
        obj.style.left = "118";
        */
    }
    if (wScreen == 1280) {
        obj = findObj("CursoGrade");
        obj.style.left = "250";
        obj = findObj("CursoObjetivo");
        obj.style.left = "250";
        obj = findObj("CursoDescricao");
        obj.style.left = "250";
        obj = findObj("CursoInformacoes");
        obj.style.left = "250";
        obj = findObj("CursoMercado");
        obj.style.left = "250";
        obj = findObj("noticiascursos");
        obj.style.left = "250";
        /*
        obj = findObj("agendaCurso");
        obj.style.left = "118";
        */
    }
    if (wScreen == 1152) {
        obj = findObj("CursoGrade");
        obj.style.left = "185";
        obj = findObj("CursoObjetivo");
        obj.style.left = "185";
        obj = findObj("CursoDescricao");
        obj.style.left = "185";
        obj = findObj("CursoInformacoes");
        obj.style.left = "185";
        obj = findObj("CursoMercado");
        obj.style.left = "185";
        obj = findObj("noticiascursos");
        obj.style.left = "185";
        /*
        obj = findObj("agendaCurso");
        obj.style.left = "118";
        */
    }
}

function ajustaDivsHome() {
    var wScreen = screen.width;
    if (wScreen == 1024) {
        obj = findObj("superbanner");
        obj.style.left = "122";
        obj = findObj("graduacao");
        obj.style.left = "122";
        obj = findObj("posgraduacao");
        obj.style.left = "122";
    }
    if (wScreen == 1152) {
        obj = findObj("superbanner");
        obj.style.left = "200";
        obj = findObj("graduacao");
        obj.style.left = "200";
        obj = findObj("posgraduacao");
        obj.style.left = "200";
    }
    if (wScreen == 1280) {
        obj = findObj("superbanner");
        obj.style.left = "249";
        obj = findObj("graduacao");
        obj.style.left = "249";
        obj = findObj("posgraduacao");
        obj.style.left = "249";
    }
}

function ead_ajustaDivs() {
    var wScreen = screen.width;
    if (wScreen == 1024) {
        obj = findObj("CursoObjetivo");
        obj.style.left = "5";
        obj = findObj("CursoPerfil");
        obj.style.left = "5";
        obj = findObj("CursoDescricao");
        obj.style.left = "5";
        obj = findObj("CursoInformacoes");
        obj.style.left = "5";
        obj = findObj("CursoMercado");
        obj.style.left = "5";
        obj = findObj("noticiascursos");
        obj.style.left = "5";
        /*
        obj = findObj("agendaCurso");
        obj.style.left = "118";
        */
    }
}

function respEnquete(parcial, id_enquete) {
    if (parcial) {
        abreJanela(400, 500, "/adm/branco.htm");
        document.enquete.action = "enquete_resultados.asp?id_enquete=" + id_enquete;
        document.enquete.target = "_parent";
        document.enquete.submit();
        self.close();
    }
    else {
        var escolheu = false;
        for (i = 0; i < document.enquete.alterEscEnq.length; i++) {
            if (document.enquete.alterEscEnq[i].checked == true) { escolheu = true; } 
        }
        if (!escolheu) { alert("Escolha uma alternativa"); return; }
        else {
            abreJanela(400, 500, "/adm/branco.htm");
            document.enquete.action = "enquete_responder.asp";
            document.enquete.target = "janela";
            document.enquete.submit();
        }
    }
}

//area de alunos
function favoritos() {
    document.location.assign("/alunos/alunos_favoritos_lista.asp");
    return;
}

function logoff() {
    document.location.assign("/alunos/alunos_logoff.asp");
    return;
}

function notas() {
    document.location.assign("/alunos/alunos_notas.asp");
    return;
}

function meus_dados() {
    document.location.assign("/alunos/alunos_dados.asp");
    return;
}

// Funções do acesso dos alunos
function jsEntrar() {
    if (document.go.matricula.value == "" || document.go.senha.value == "") { alert("Preencha os campos Matricula e Senha!"); return; }
    else {
        document.go.submit();
    }
}

function jsLembrete() {
    if (document.go.matricula.value == "" || document.go.rg.value == "") { alert("Preencha os campos matrícula e RG"); return; }
    else {
        document.go.submit();
    }
}

function esqueci(matricula) {
    if (matricula == "") { alert("Preencha o campo Matrícula e clique novamente em Envie minha senha por e-mail."); document.go.matricula.focus(); return; }
    document.location.assign("/alunos/alunos_esqueci_email.asp?matricula=" + matricula);
}

function plugin() {
    var agt = navigator.userAgent.toLowerCase();
    var ie = (agt.indexOf("msie") != -1);
    var ns = (navigator.appName.indexOf("Netscape") != -1);
    var win = ((agt.indexOf("win") != -1) || (agt.indexOf("32bit") != -1));
    var mac = (agt.indexOf("mac") != -1);

    if (ie && win) { pluginlist = detectIE("Adobe.SVGCtl", "SVG Viewer") + detectIE("SWCtl.SWCtl.1", "Shockwave Director") + detectIE("ShockwaveFlash.ShockwaveFlash.1", "Shockwave Flash") + detectIE("rmocx.RealPlayer G2 Control.1", "RealPlayer") + detectIE("QuickTimeCheckObject.QuickTimeCheck.1", "QuickTime") + detectIE("MediaPlayer.MediaPlayer.1", "Windows Media Player") + detectIE("PDF.PdfCtrl.5", "Acrobat Reader"); }
    if (ns || !win) {
        nse = ""; for (var i = 0; i < navigator.mimeTypes.length; i++) nse += navigator.mimeTypes[i].type.toLowerCase();
        pluginlist = detectNS("image/svg-xml", "SVG Viewer") + detectNS("application/x-director", "Shockwave Director") + detectNS("application/x-shockwave-flash", "Shockwave Flash") + detectNS("audio/x-pn-realaudio-plugin", "RealPlayer") + detectNS("video/quicktime", "QuickTime") + detectNS("application/x-mplayer2", "Windows Media Player") + detectNS("application/pdf", "Acrobat Reader");
    }

    function detectIE(ClassID, name) { result = false; document.write('<SCRIPT LANGUAGE=VBScript>\n on error resume next \n result = IsObject(CreateObject("' + ClassID + '"))</SCRIPT>\n'); if (result) return name + ','; else return ''; }
    function detectNS(ClassID, name) { n = ""; if (nse.indexOf(ClassID) != -1) if (navigator.mimeTypes[ClassID].enabledPlugin != null) n = name + ","; return n; }

    pluginlist += navigator.javaEnabled() ? "Java," : "";
    if (pluginlist.length > 0) pluginlist = pluginlist.substring(0, pluginlist.length - 1);

    //SAMPLE USAGE- detect "Flash"
    //if (pluginlist.indexOf("Flash")!=-1)
    //document.write("You have flash installed")
}

//Valida o cpf 
function ValidaCPF(CPF) {
    dig_1 = 0;
    dig_2 = 0;
    controle_1 = 10;
    controle_2 = 11;
    lsucesso = 1;

    if ((CPF.length != 11)) //|| (CPF.substring(9, 10) != "-"))
    {
        alert("CPF inválido! Formato: xxxxxxxxxxx");
        return false;
    }
    else {
        for (i = 0; i < 9; i++) {
            dig_1 = dig_1 + parseInt(CPF.substring(i, i + 1) * controle_1);
            controle_1 = controle_1 - 1;
        }

        resto = dig_1 % 11;
        dig_1 = 11 - resto;

        if ((resto == 0) || (resto == 1))
            dig_1 = 0;

        for (i = 0; i < 9; i++) {
            dig_2 = dig_2 + parseInt(CPF.substring(i, i + 1) * controle_2);
            controle_2 = controle_2 - 1;
        }

        dig_2 = dig_2 + 2 * dig_1;
        resto = dig_2 % 11;
        dig_2 = 11 - resto;

        if ((resto == 0) || (resto == 1))
            dig_2 = 0;

        dig_ver = (dig_1 * 10) + dig_2;

        if (dig_ver != parseFloat(CPF.substring(CPF.length - 2, CPF.length))) {
            alert("CPF inválido!");
            return false;
        }
    }
    return true;
}

// Verifica se a Data digitada é válida
function isValidData(vfield, vfieldName) {
    var diaStr, mesStr, anoStr
    var diaInt, mesInt, anoInt
    var tam, sep1, sep2, verAno
    tam = vfield.length;
    sep1 = parseInt(vfield.indexOf("/", 0));
    if (sep1 < 0) {
        alert("A Data digitada deve ter o seguinte formato: DD/MM/AAAA !");
        return false;
    }
    sep2 = parseInt(vfield.indexOf("/", sep1 + 1))
    if (sep2 < 5) {
        alert("A Data digitada deve ter o seguinte formato: DD/MM/AAAA !");
        return false;
    }
    verAno = tam - sep2;
    if (verAno < 5) {
        alert("As datas devem ser preenchidas utilizando 4 dígitos para informar o Ano (ex.: DD/MM/AAAA)!");
        return false;
    }
    diaStr = vfield.substring(0, sep1);
    if (diaStr.substring(0, 1) == "0")
        diaStr = diaStr.substring(1, 2);
    if (isValidNumberValue(diaStr, vfieldName)) {
        mesStr = vfield.substring(sep1 + 1, sep2);
        if (mesStr.substring(0, 1) == "0")
            mesStr = mesStr.substring(1, 2);
        if (isValidNumberValue(mesStr, vfieldName)) {
            anoStr = vfield.substring(sep2 + 1, tam);
            if (isValidNumberValue(anoStr, vfieldName)) {
                diaInt = parseInt(diaStr);
                mesInt = parseInt(mesStr);
                anoInt = parseInt(anoStr);
                if ((diaInt <= 0) || (diaInt > 31)) {
                    alert("O dia informado não é válido!");
                    return false;
                }
                if ((mesInt <= 0) || (mesInt > 12)) {
                    alert("O mês informado não é válido!");
                    return false;
                }
                if ((mesInt == 4) || (mesInt == 6) || (mesInt == 9) || (mesInt == 11)) {
                    if (diaInt > 30) {
                        alert("O mês informado não possui mais de 30 dias!");
                        return false;
                    }
                }
                if (mesInt == 2) {
                    if ((anoInt % 4 == 0) && ((anoInt % 100 != 0) || (anoInt % 400 == 0))) {
                        if (diaInt > 29) {
                            alert("O mês informado não possui mais de 29 dias!");
                            return false;
                        }
                    }
                    else {
                        if (diaInt > 28) {
                            alert("O mês informado não possui mais de 28 dias!");
                            return false;
                        }
                    }
                    return true;
                }
                return true;
            }
            else
                return false;
        }
        else
            return false;
    }
    else
        return false;
}

// Verifica se somente números foram digitados no campo;
function isValidNumberValue(objTextControl, strFieldName) {
    var strValidNumber = "1234567890";

    for (nCount = 0; nCount < objTextControl.length; nCount++) {
        strTempChar = objTextControl.substring(nCount, nCount + 1);
        if (strValidNumber.indexOf(strTempChar, 0) == -1) {
            alert("O campo " + strFieldName + " deve conter somente números!");
            return false;
        }
    }

    return true;
}

/**
* mm_menu 20MAR2002 Version 6.0
* Andy Finnell, March 2002
* Copyright (c) 2000-2002 Macromedia, Inc.
*
* based on menu.js
* by gary smith, July 1997
* Copyright (c) 1997-1999 Netscape Communications Corp.
*
* Netscape grants you a royalty free license to use or modify this
* software provided that this copyright notice appears on all copies.
* This software is provided "AS IS," without a warranty of any kind.
*/
function Menu(label, mw, mh, fnt, fs, fclr, fhclr, bg, bgh, halgn, valgn, pad, space, to, sx, sy, srel, opq, vert, idt, aw, ah) {
    this.version = "020320 [Menu; mm_menu.js]";
    this.type = "Menu";
    this.menuWidth = mw;
    this.menuItemHeight = mh;
    this.fontSize = fs;
    this.fontWeight = "plain";
    this.fontFamily = fnt;
    this.fontColor = fclr;
    this.fontColorHilite = fhclr;
    this.bgColor = "#555555";
    this.menuBorder = 1;
    this.menuBgOpaque = opq;
    this.menuItemBorder = 1;
    this.menuItemIndent = idt;
    this.menuItemBgColor = bg;
    this.menuItemVAlign = valgn;
    this.menuItemHAlign = halgn;
    this.menuItemPadding = pad;
    this.menuItemSpacing = space;
    this.menuLiteBgColor = "#ffffff";
    this.menuBorderBgColor = "#777777";
    this.menuHiliteBgColor = bgh;
    this.menuContainerBgColor = "#cccccc";
    this.childMenuIcon = "arrows.gif";
    this.submenuXOffset = sx;
    this.submenuYOffset = sy;
    this.submenuRelativeToItem = srel;
    this.vertical = vert;
    this.items = new Array();
    this.actions = new Array();
    this.childMenus = new Array();
    this.hideOnMouseOut = true;
    this.hideTimeout = to;
    this.addMenuItem = addMenuItem;
    this.writeMenus = writeMenus;
    this.MM_showMenu = MM_showMenu;
    this.onMenuItemOver = onMenuItemOver;
    this.onMenuItemAction = onMenuItemAction;
    this.hideMenu = hideMenu;
    this.hideChildMenu = hideChildMenu;
    if (!window.menus) window.menus = new Array();
    this.label = " " + label;
    window.menus[this.label] = this;
    window.menus[window.menus.length] = this;
    if (!window.activeMenus) window.activeMenus = new Array();
}

function addMenuItem(label, action) {
    this.items[this.items.length] = label;
    this.actions[this.actions.length] = action;
}

function FIND(item) {
    if (window.mmIsOpera) return (document.getElementById(item));
    if (document.all) return (document.all[item]);
    if (document.getElementById) return (document.getElementById(item));
    return (false);
}

function writeMenus(container) {
    if (window.triedToWriteMenus) return;
    var agt = navigator.userAgent.toLowerCase();
    window.mmIsOpera = agt.indexOf("opera") != -1;
    if (!container && document.layers) {
        window.delayWriteMenus = this.writeMenus;
        var timer = setTimeout('delayWriteMenus()', 500);
        container = new Layer(100);
        clearTimeout(timer);
    } else if (document.all || document.hasChildNodes || window.mmIsOpera) {
        document.writeln('<span id="menuContainer"></span>');
        container = FIND("menuContainer");
    }

    window.mmHideMenuTimer = null;
    if (!container) return;
    window.triedToWriteMenus = true;
    container.isContainer = true;
    container.menus = new Array();
    for (var i = 0; i < window.menus.length; i++)
        container.menus[i] = window.menus[i];
    window.menus.length = 0;
    var countMenus = 0;
    var countItems = 0;
    var top = 0;
    var content = '';
    var lrs = false;
    var theStat = "";
    var tsc = 0;
    if (document.layers) lrs = true;
    for (var i = 0; i < container.menus.length; i++, countMenus++) {
        var menu = container.menus[i];
        if (menu.bgImageUp || !menu.menuBgOpaque) {
            menu.menuBorder = 0;
            menu.menuItemBorder = 0;
        }
        if (lrs) {
            var menuLayer = new Layer(100, container);
            var lite = new Layer(100, menuLayer);
            lite.top = menu.menuBorder;
            lite.left = menu.menuBorder;
            var body = new Layer(100, lite);
            body.top = menu.menuBorder;
            body.left = menu.menuBorder;
        } else {
            content += '' +
			'<div id="menuLayer' + countMenus + '" style="position:absolute;z-index:1000;left:10px;top:' + (i * 100) + 'px;visibility:hidden;color:' + menu.menuBorderBgColor + ';">\n' +
			'  <div id="menuLite' + countMenus + '" style="position:absolute;z-index:1000;left:' + menu.menuBorder + 'px;top:' + menu.menuBorder + 'px;visibility:hide;" onmouseout="mouseoutMenu();">\n' +
			'	 <div id="menuFg' + countMenus + '" style="position:absolute;left:' + menu.menuBorder + 'px;top:' + menu.menuBorder + 'px;visibility:hide;">\n' +
			'';
        }
        var x = i;
        for (var i = 0; i < menu.items.length; i++) {
            var item = menu.items[i];
            var childMenu = false;
            var defaultHeight = menu.fontSize + 2 * menu.menuItemPadding;
            if (item.label) {
                item = item.label;
                childMenu = true;
            }
            menu.menuItemHeight = menu.menuItemHeight || defaultHeight;
            var itemProps = '';
            if (menu.fontFamily != '') itemProps += 'font-family:' + menu.fontFamily + ';';
            itemProps += 'font-weight:' + menu.fontWeight + ';fontSize:' + menu.fontSize + 'px;';
            if (menu.fontStyle) itemProps += 'font-style:' + menu.fontStyle + ';';
            if (document.all || window.mmIsOpera)
                itemProps += 'font-size:' + menu.fontSize + 'px;" onmouseover="onMenuItemOver(null,this);" onclick="onMenuItemAction(null,this);';
            else if (!document.layers) {
                itemProps += 'font-size:' + menu.fontSize + 'px;';
            }
            var l;
            if (lrs) {
                var lw = menu.menuWidth;
                if (menu.menuItemHAlign == 'right') lw -= menu.menuItemPadding;
                l = new Layer(lw, body);
            }
            var itemLeft = 0;
            var itemTop = i * menu.menuItemHeight;
            if (!menu.vertical) {
                itemLeft = i * menu.menuWidth;
                itemTop = 0;
            }
            var dTag = '<div id="menuItem' + countItems + '" style="position:absolute;left:' + itemLeft + 'px;top:' + itemTop + 'px;' + itemProps + '">';
            var dClose = '</div>'
            if (menu.bgImageUp) dTag = '<div id="menuItem' + countItems + '" style="background:url(' + menu.bgImageUp + ');position:absolute;left:' + itemLeft + 'px;top:' + itemTop + 'px;' + itemProps + '">';

            var left = 0, top = 0, right = 0, bottom = 0;
            left = 1 + menu.menuItemPadding + menu.menuItemIndent;
            right = left + menu.menuWidth - 2 * menu.menuItemPadding - menu.menuItemIndent;
            if (menu.menuItemVAlign == 'top') top = menu.menuItemPadding;
            if (menu.menuItemVAlign == 'bottom') top = menu.menuItemHeight - menu.fontSize - 1 - menu.menuItemPadding;
            if (menu.menuItemVAlign == 'middle') top = ((menu.menuItemHeight / 2) - (menu.fontSize / 2) - 1);
            bottom = menu.menuItemHeight - 2 * menu.menuItemPadding;
            var textProps = 'position:absolute;left:' + left + 'px;top:' + top + 'px;';
            if (lrs) {
                textProps += itemProps + 'right:' + right + ';bottom:' + bottom + ';';
                dTag = "";
                dClose = "";
            }

            if (document.all && !window.mmIsOpera) {
                item = '<div align="' + menu.menuItemHAlign + '">' + item + '</div>';
            } else if (lrs) {
                item = '<div style="text-align:' + menu.menuItemHAlign + ';">' + item + '</div>';
            } else {
                var hitem = null;
                if (menu.menuItemHAlign != 'left') {
                    if (window.mmIsOpera) {
                        var operaWidth = menu.menuItemHAlign == 'center' ? -(menu.menuWidth - 2 * menu.menuItemPadding) : (menu.menuWidth - 6 * menu.menuItemPadding);
                        hitem = '<div id="menuItemHilite' + countItems + 'Shim" style="position:absolute;top:1px;left:' + menu.menuItemPadding + 'px;width:' + operaWidth + 'px;text-align:'
							+ menu.menuItemHAlign + ';visibility:visible;">' + item + '</div>';
                        item = '<div id="menuItemText' + countItems + 'Shim" style="position:absolute;top:1px;left:' + menu.menuItemPadding + 'px;width:' + operaWidth + 'px;text-align:'
							+ menu.menuItemHAlign + ';visibility:visible;">' + item + '</div>';
                    } else {
                        hitem = '<div id="menuItemHilite' + countItems + 'Shim" style="position:absolute;top:1px;left:1px;right:-' + (left + menu.menuWidth - 3 * menu.menuItemPadding) + 'px;text-align:'
							+ menu.menuItemHAlign + ';visibility:visible;">' + item + '</div>';
                        item = '<div id="menuItemText' + countItems + 'Shim" style="position:absolute;top:1px;left:1px;right:-' + (left + menu.menuWidth - 3 * menu.menuItemPadding) + 'px;text-align:'
							+ menu.menuItemHAlign + ';visibility:visible;">' + item + '</div>';
                    }
                } else hitem = null;
            }
            if (document.all && !window.mmIsOpera) item = '<div id="menuItemShim' + countItems + '" style="position:absolute;left:0px;top:0px;">' + item + '</div>';
            var dText = '<div id="menuItemText' + countItems + '" style="' + textProps + 'color:' + menu.fontColor + ';">' + item + '&nbsp</div>\n'
						+ '<div id="menuItemHilite' + countItems + '" style="' + textProps + 'color:' + menu.fontColorHilite + ';visibility:hidden;">'
						+ (hitem || item) + '&nbsp</div>';
            if (childMenu) content += (dTag + dText + '<div id="childMenu' + countItems + '" style="position:absolute;left:0px;top:3px;"><img src="' + menu.childMenuIcon + '"></div>\n' + dClose);
            else content += (dTag + dText + dClose);
            if (lrs) {
                l.document.open("text/html");
                l.document.writeln(content);
                l.document.close();
                content = '';
                theStat += "-";
                tsc++;
                if (tsc > 50) {
                    tsc = 0;
                    theStat = "";
                }
                status = theStat;
            }
            countItems++;
        }
        if (lrs) {
            var focusItem = new Layer(100, body);
            focusItem.visiblity = "hidden";
            focusItem.document.open("text/html");
            focusItem.document.writeln("&nbsp;");
            focusItem.document.close();
        } else {
            content += '	  <div id="focusItem' + countMenus + '" style="position:absolute;left:0px;top:0px;visibility:hide;" onclick="onMenuItemAction(null,this);">&nbsp;</div>\n';
            content += '   </div>\n  </div>\n</div>\n';
        }
        i = x;
    }
    if (document.layers) {
        container.clip.width = window.innerWidth;
        container.clip.height = window.innerHeight;
        container.onmouseout = mouseoutMenu;
        container.menuContainerBgColor = this.menuContainerBgColor;
        for (var i = 0; i < container.document.layers.length; i++) {
            proto = container.menus[i];
            var menu = container.document.layers[i];
            container.menus[i].menuLayer = menu;
            container.menus[i].menuLayer.Menu = container.menus[i];
            container.menus[i].menuLayer.Menu.container = container;
            var body = menu.document.layers[0].document.layers[0];
            body.clip.width = proto.menuWidth || body.clip.width;
            body.clip.height = proto.menuHeight || body.clip.height;
            for (var n = 0; n < body.document.layers.length - 1; n++) {
                var l = body.document.layers[n];
                l.Menu = container.menus[i];
                l.menuHiliteBgColor = proto.menuHiliteBgColor;
                l.document.bgColor = proto.menuItemBgColor;
                l.saveColor = proto.menuItemBgColor;
                l.onmouseover = proto.onMenuItemOver;
                l.onclick = proto.onMenuItemAction;
                l.mmaction = container.menus[i].actions[n];
                l.focusItem = body.document.layers[body.document.layers.length - 1];
                l.clip.width = proto.menuWidth || body.clip.width;
                l.clip.height = proto.menuItemHeight || l.clip.height;
                if (n > 0) {
                    if (l.Menu.vertical) l.top = body.document.layers[n - 1].top + body.document.layers[n - 1].clip.height + proto.menuItemBorder + proto.menuItemSpacing;
                    else l.left = body.document.layers[n - 1].left + body.document.layers[n - 1].clip.width + proto.menuItemBorder + proto.menuItemSpacing;
                }
                l.hilite = l.document.layers[1];
                if (proto.bgImageUp) l.background.src = proto.bgImageUp;
                l.document.layers[1].isHilite = true;
                if (l.document.layers.length > 2) {
                    l.childMenu = container.menus[i].items[n].menuLayer;
                    l.document.layers[2].left = l.clip.width - 13;
                    l.document.layers[2].top = (l.clip.height / 2) - 4;
                    l.document.layers[2].clip.left += 3;
                    l.Menu.childMenus[l.Menu.childMenus.length] = l.childMenu;
                }
            }
            if (proto.menuBgOpaque) body.document.bgColor = proto.bgColor;
            if (proto.vertical) {
                body.clip.width = l.clip.width + proto.menuBorder;
                body.clip.height = l.top + l.clip.height + proto.menuBorder;
            } else {
                body.clip.height = l.clip.height + proto.menuBorder;
                body.clip.width = l.left + l.clip.width + proto.menuBorder;
                if (body.clip.width > window.innerWidth) body.clip.width = window.innerWidth;
            }
            var focusItem = body.document.layers[n];
            focusItem.clip.width = body.clip.width;
            focusItem.Menu = l.Menu;
            focusItem.top = -30;
            focusItem.captureEvents(Event.MOUSEDOWN);
            focusItem.onmousedown = onMenuItemDown;
            if (proto.menuBgOpaque) menu.document.bgColor = proto.menuBorderBgColor;
            var lite = menu.document.layers[0];
            if (proto.menuBgOpaque) lite.document.bgColor = proto.menuLiteBgColor;
            lite.clip.width = body.clip.width + 1;
            lite.clip.height = body.clip.height + 1;
            menu.clip.width = body.clip.width + (proto.menuBorder * 3);
            menu.clip.height = body.clip.height + (proto.menuBorder * 3);
        }
    } else {
        if ((!document.all) && (container.hasChildNodes) && !window.mmIsOpera) {
            container.innerHTML = content;
        } else {
            container.document.open("text/html");
            container.document.writeln(content);
            container.document.close();
        }
        if (!FIND("menuLayer0")) return;
        var menuCount = 0;
        for (var x = 0; x < container.menus.length; x++) {
            var menuLayer = FIND("menuLayer" + x);
            container.menus[x].menuLayer = "menuLayer" + x;
            menuLayer.Menu = container.menus[x];
            menuLayer.Menu.container = "menuLayer" + x;
            menuLayer.style.zindex = 1;
            var s = menuLayer.style;
            s.pixeltop = -300;
            s.pixelleft = -300;
            s.top = '-300px';
            s.left = '-300px';

            var menu = container.menus[x];
            menu.menuItemWidth = menu.menuWidth || menu.menuIEWidth || 140;
            if (menu.menuBgOpaque) menuLayer.style.backgroundColor = menu.menuBorderBgColor;
            var top = 0;
            var left = 0;
            menu.menuItemLayers = new Array();
            for (var i = 0; i < container.menus[x].items.length; i++) {
                var l = FIND("menuItem" + menuCount);
                l.Menu = container.menus[x];
                l.Menu.menuItemLayers[l.Menu.menuItemLayers.length] = l;
                if (l.addEventListener || window.mmIsOpera) {
                    l.style.width = menu.menuItemWidth + 'px';
                    l.style.height = menu.menuItemHeight + 'px';
                    l.style.pixelWidth = menu.menuItemWidth;
                    l.style.pixelHeight = menu.menuItemHeight;
                    l.style.top = top + 'px';
                    l.style.left = left + 'px';
                    if (l.addEventListener) {
                        l.addEventListener("mouseover", onMenuItemOver, false);
                        l.addEventListener("click", onMenuItemAction, false);
                        l.addEventListener("mouseout", mouseoutMenu, false);
                    }
                    if (menu.menuItemHAlign != 'left') {
                        l.hiliteShim = FIND("menuItemHilite" + menuCount + "Shim");
                        l.hiliteShim.style.visibility = "inherit";
                        l.textShim = FIND("menuItemText" + menuCount + "Shim");
                        l.hiliteShim.style.pixelWidth = menu.menuItemWidth - 2 * menu.menuItemPadding - menu.menuItemIndent;
                        l.hiliteShim.style.width = l.hiliteShim.style.pixelWidth;
                        l.textShim.style.pixelWidth = menu.menuItemWidth - 2 * menu.menuItemPadding - menu.menuItemIndent;
                        l.textShim.style.width = l.textShim.style.pixelWidth;
                    }
                } else {
                    l.style.pixelWidth = menu.menuItemWidth;
                    l.style.pixelHeight = menu.menuItemHeight;
                    l.style.pixelTop = top;
                    l.style.pixelLeft = left;
                    if (menu.menuItemHAlign != 'left') {
                        var shim = FIND("menuItemShim" + menuCount);
                        shim[0].style.pixelWidth = menu.menuItemWidth - 2 * menu.menuItemPadding - menu.menuItemIndent;
                        shim[1].style.pixelWidth = menu.menuItemWidth - 2 * menu.menuItemPadding - menu.menuItemIndent;
                        shim[0].style.width = shim[0].style.pixelWidth + 'px';
                        shim[1].style.width = shim[1].style.pixelWidth + 'px';
                    }
                }
                if (menu.vertical) top = top + menu.menuItemHeight + menu.menuItemBorder + menu.menuItemSpacing;
                else left = left + menu.menuItemWidth + menu.menuItemBorder + menu.menuItemSpacing;
                l.style.fontSize = menu.fontSize + 'px';
                l.style.backgroundColor = menu.menuItemBgColor;
                l.style.visibility = "inherit";
                l.saveColor = menu.menuItemBgColor;
                l.menuHiliteBgColor = menu.menuHiliteBgColor;
                l.mmaction = container.menus[x].actions[i];
                l.hilite = FIND("menuItemHilite" + menuCount);
                l.focusItem = FIND("focusItem" + x);
                l.focusItem.style.pixelTop = -30;
                l.focusItem.style.top = '-30px';
                var childItem = FIND("childMenu" + menuCount);
                if (childItem) {
                    l.childMenu = container.menus[x].items[i].menuLayer;
                    childItem.style.pixelLeft = menu.menuItemWidth - 11;
                    childItem.style.left = childItem.style.pixelLeft + 'px';
                    childItem.style.pixelTop = (menu.menuItemHeight / 2) - 4;
                    childItem.style.top = childItem.style.pixelTop + 'px';
                    l.Menu.childMenus[l.Menu.childMenus.length] = l.childMenu;
                }
                l.style.cursor = "hand";
                menuCount++;
            }
            if (menu.vertical) {
                menu.menuHeight = top - 1 - menu.menuItemSpacing;
                menu.menuWidth = menu.menuItemWidth;
            } else {
                menu.menuHeight = menu.menuItemHeight;
                menu.menuWidth = left - 1 - menu.menuItemSpacing;
            }

            var lite = FIND("menuLite" + x);
            var s = lite.style;
            s.pixelHeight = menu.menuHeight + (menu.menuBorder * 2);
            s.height = s.pixelHeight + 'px';
            s.pixelWidth = menu.menuWidth + (menu.menuBorder * 2);
            s.width = s.pixelWidth + 'px';
            if (menu.menuBgOpaque) s.backgroundColor = menu.menuLiteBgColor;

            var body = FIND("menuFg" + x);
            s = body.style;
            s.pixelHeight = menu.menuHeight + menu.menuBorder;
            s.height = s.pixelHeight + 'px';
            s.pixelWidth = menu.menuWidth + menu.menuBorder;
            s.width = s.pixelWidth + 'px';
            if (menu.menuBgOpaque) s.backgroundColor = menu.bgColor;

            s = menuLayer.style;
            s.pixelWidth = menu.menuWidth + (menu.menuBorder * 4);
            s.width = s.pixelWidth + 'px';
            s.pixelHeight = menu.menuHeight + (menu.menuBorder * 4);
            s.height = s.pixelHeight + 'px';
        }
    }
    if (document.captureEvents) document.captureEvents(Event.MOUSEUP);
    if (document.addEventListener) document.addEventListener("mouseup", onMenuItemOver, false);
    if (document.layers && window.innerWidth) {
        window.onresize = NS4resize;
        window.NS4sIW = window.innerWidth;
        window.NS4sIH = window.innerHeight;
        setTimeout("NS4resize()", 500);
    }
    document.onmouseup = mouseupMenu;
    window.mmWroteMenu = true;
    status = "";
}

function NS4resize() {
    if (NS4sIW != window.innerWidth || NS4sIH != window.innerHeight) window.location.reload();
}

function onMenuItemOver(e, l) {
    MM_clearTimeout();
    l = l || this;
    a = window.ActiveMenuItem;
    if (document.layers) {
        if (a) {
            a.document.bgColor = a.saveColor;
            if (a.hilite) a.hilite.visibility = "hidden";
            if (a.Menu.bgImageOver) a.background.src = a.Menu.bgImageUp;
            a.focusItem.top = -100;
            a.clicked = false;
        }
        if (l.hilite) {
            l.document.bgColor = l.menuHiliteBgColor;
            l.zIndex = 1;
            l.hilite.visibility = "inherit";
            l.hilite.zIndex = 2;
            l.document.layers[1].zIndex = 1;
            l.focusItem.zIndex = this.zIndex + 2;
        }
        if (l.Menu.bgImageOver) l.background.src = l.Menu.bgImageOver;
        l.focusItem.top = this.top;
        l.focusItem.left = this.left;
        l.focusItem.clip.width = l.clip.width;
        l.focusItem.clip.height = l.clip.height;
        l.Menu.hideChildMenu(l);
    } else if (l.style && l.Menu) {
        if (a) {
            a.style.backgroundColor = a.saveColor;
            if (a.hilite) a.hilite.style.visibility = "hidden";
            if (a.hiliteShim) a.hiliteShim.style.visibility = "inherit";
            if (a.Menu.bgImageUp) a.style.background = "url(" + a.Menu.bgImageUp + ")"; ;
        }
        l.style.backgroundColor = l.menuHiliteBgColor;
        l.zIndex = 1;
        if (l.Menu.bgImageOver) l.style.background = "url(" + l.Menu.bgImageOver + ")";
        if (l.hilite) {
            l.hilite.style.visibility = "inherit";
            if (l.hiliteShim) l.hiliteShim.style.visibility = "visible";
        }
        l.focusItem.style.pixelTop = l.style.pixelTop;
        l.focusItem.style.top = l.focusItem.style.pixelTop + 'px';
        l.focusItem.style.pixelLeft = l.style.pixelLeft;
        l.focusItem.style.left = l.focusItem.style.pixelLeft + 'px';
        l.focusItem.style.zIndex = l.zIndex + 1;
        l.Menu.hideChildMenu(l);
    } else return;
    window.ActiveMenuItem = l;
}

function onMenuItemAction(e, l) {
    l = window.ActiveMenuItem;
    if (!l) return;
    hideActiveMenus();
    if (l.mmaction) eval("" + l.mmaction);
    window.ActiveMenuItem = 0;
}

function MM_clearTimeout() {
    if (mmHideMenuTimer) clearTimeout(mmHideMenuTimer);
    mmHideMenuTimer = null;
    mmDHFlag = false;
}

function MM_startTimeout() {
    if (window.ActiveMenu) {
        mmStart = new Date();
        mmDHFlag = true;
        mmHideMenuTimer = setTimeout("mmDoHide()", window.ActiveMenu.Menu.hideTimeout);
    }
}

function mmDoHide() {
    if (!mmDHFlag || !window.ActiveMenu) return;
    var elapsed = new Date() - mmStart;
    var timeout = window.ActiveMenu.Menu.hideTimeout;
    if (elapsed < timeout) {
        mmHideMenuTimer = setTimeout("mmDoHide()", timeout + 100 - elapsed);
        return;
    }
    mmDHFlag = false;
    hideActiveMenus();
    window.ActiveMenuItem = 0;
}

function MM_showMenu(menu, x, y, child, imgname) {
    if (!window.mmWroteMenu) return;
    MM_clearTimeout();
    if (menu) {
        var obj = FIND(imgname) || document.images[imgname] || document.links[imgname] || document.anchors[imgname];
        x = moveXbySlicePos(x, obj);
        y = moveYbySlicePos(y, obj);
    }
    if (document.layers) {
        if (menu) {
            var l = menu.menuLayer || menu;
            l.top = l.left = 1;
            hideActiveMenus();
            if (this.visibility) l = this;
            window.ActiveMenu = l;
        } else {
            var l = child;
        }
        if (!l) return;
        for (var i = 0; i < l.layers.length; i++) {
            if (!l.layers[i].isHilite) l.layers[i].visibility = "inherit";
            if (l.layers[i].document.layers.length > 0) MM_showMenu(null, "relative", "relative", l.layers[i]);
        }
        if (l.parentLayer) {
            if (x != "relative") l.parentLayer.left = x || window.pageX || 0;
            if (l.parentLayer.left + l.clip.width > window.innerWidth) l.parentLayer.left -= (l.parentLayer.left + l.clip.width - window.innerWidth);
            if (y != "relative") l.parentLayer.top = y || window.pageY || 0;
            if (l.parentLayer.isContainer) {
                l.Menu.xOffset = window.pageXOffset;
                l.Menu.yOffset = window.pageYOffset;
                l.parentLayer.clip.width = window.ActiveMenu.clip.width + 2;
                l.parentLayer.clip.height = window.ActiveMenu.clip.height + 2;
                if (l.parentLayer.menuContainerBgColor && l.Menu.menuBgOpaque) l.parentLayer.document.bgColor = l.parentLayer.menuContainerBgColor;
            }
        }
        l.visibility = "inherit";
        if (l.Menu) l.Menu.container.visibility = "inherit";
    } else if (FIND("menuItem0")) {
        var l = menu.menuLayer || menu;
        hideActiveMenus();
        if (typeof (l) == "string") l = FIND(l);
        window.ActiveMenu = l;
        var s = l.style;
        s.visibility = "inherit";
        if (x != "relative") {
            s.pixelLeft = x || (window.pageX + document.body.scrollLeft) || 0;
            s.left = s.pixelLeft + 'px';
        }
        if (y != "relative") {
            s.pixelTop = y || (window.pageY + document.body.scrollTop) || 0;
            s.top = s.pixelTop + 'px';
        }
        l.Menu.xOffset = document.body.scrollLeft;
        l.Menu.yOffset = document.body.scrollTop;
    }
    if (menu) window.activeMenus[window.activeMenus.length] = l;
    MM_clearTimeout();
}

function onMenuItemDown(e, l) {
    var a = window.ActiveMenuItem;
    if (document.layers && a) {
        a.eX = e.pageX;
        a.eY = e.pageY;
        a.clicked = true;
    }
}

function mouseupMenu(e) {
    hideMenu(true, e);
    hideActiveMenus();
    return true;
}

function getExplorerVersion() {
    var ieVers = parseFloat(navigator.appVersion);
    if (navigator.appName != 'Microsoft Internet Explorer') return ieVers;
    var tempVers = navigator.appVersion;
    var i = tempVers.indexOf('MSIE ');
    if (i >= 0) {
        tempVers = tempVers.substring(i + 5);
        ieVers = parseFloat(tempVers);
    }
    return ieVers;
}

function mouseoutMenu() {
    if ((navigator.appName == "Microsoft Internet Explorer") && (getExplorerVersion() < 4.5))
        return true;
    hideMenu(false, false);
    return true;
}

function hideMenu(mouseup, e) {
    var a = window.ActiveMenuItem;
    if (a && document.layers) {
        a.document.bgColor = a.saveColor;
        a.focusItem.top = -30;
        if (a.hilite) a.hilite.visibility = "hidden";
        if (mouseup && a.mmaction && a.clicked && window.ActiveMenu) {
            if (a.eX <= e.pageX + 15 && a.eX >= e.pageX - 15 && a.eY <= e.pageY + 10 && a.eY >= e.pageY - 10) {
                setTimeout('window.ActiveMenu.Menu.onMenuItemAction();', 500);
            }
        }
        a.clicked = false;
        if (a.Menu.bgImageOver) a.background.src = a.Menu.bgImageUp;
    } else if (window.ActiveMenu && FIND("menuItem0")) {
        if (a) {
            a.style.backgroundColor = a.saveColor;
            if (a.hilite) a.hilite.style.visibility = "hidden";
            if (a.hiliteShim) a.hiliteShim.style.visibility = "inherit";
            if (a.Menu.bgImageUp) a.style.background = "url(" + a.Menu.bgImageUp + ")";
        }
    }
    if (!mouseup && window.ActiveMenu) {
        if (window.ActiveMenu.Menu) {
            if (window.ActiveMenu.Menu.hideOnMouseOut) MM_startTimeout();
            return (true);
        }
    }
    return (true);
}

function hideChildMenu(hcmLayer) {
    MM_clearTimeout();
    var l = hcmLayer;
    for (var i = 0; i < l.Menu.childMenus.length; i++) {
        var theLayer = l.Menu.childMenus[i];
        if (document.layers) theLayer.visibility = "hidden";
        else {
            theLayer = FIND(theLayer);
            theLayer.style.visibility = "hidden";
            if (theLayer.Menu.menuItemHAlign != 'left') {
                for (var j = 0; j < theLayer.Menu.menuItemLayers.length; j++) {
                    var itemLayer = theLayer.Menu.menuItemLayers[j];
                    if (itemLayer.textShim) itemLayer.textShim.style.visibility = "inherit";
                }
            }
        }
        theLayer.Menu.hideChildMenu(theLayer);
    }
    if (l.childMenu) {
        var childMenu = l.childMenu;
        if (document.layers) {
            l.Menu.MM_showMenu(null, null, null, childMenu.layers[0]);
            childMenu.zIndex = l.parentLayer.zIndex + 1;
            childMenu.top = l.Menu.menuLayer.top + l.Menu.submenuYOffset;
            if (l.Menu.vertical) {
                if (l.Menu.submenuRelativeToItem) childMenu.top += l.top + l.parentLayer.top;
                childMenu.left = l.parentLayer.left + l.parentLayer.clip.width - (2 * l.Menu.menuBorder) + l.Menu.menuLayer.left + l.Menu.submenuXOffset;
            } else {
                childMenu.top += l.top + l.parentLayer.top;
                if (l.Menu.submenuRelativeToItem) childMenu.left = l.Menu.menuLayer.left + l.left + l.clip.width + (2 * l.Menu.menuBorder) + l.Menu.submenuXOffset;
                else childMenu.left = l.parentLayer.left + l.parentLayer.clip.width - (2 * l.Menu.menuBorder) + l.Menu.menuLayer.left + l.Menu.submenuXOffset;
            }
            if (childMenu.left < l.Menu.container.clip.left) l.Menu.container.clip.left = childMenu.left;
            var w = childMenu.clip.width + childMenu.left - l.Menu.container.clip.left;
            if (w > l.Menu.container.clip.width) l.Menu.container.clip.width = w;
            var h = childMenu.clip.height + childMenu.top - l.Menu.container.clip.top;
            if (h > l.Menu.container.clip.height) l.Menu.container.clip.height = h;
            l.document.layers[1].zIndex = 0;
            childMenu.visibility = "inherit";
        } else if (FIND("menuItem0")) {
            childMenu = FIND(l.childMenu);
            var menuLayer = FIND(l.Menu.menuLayer);
            var s = childMenu.style;
            s.zIndex = menuLayer.style.zIndex + 1;
            if (document.all || window.mmIsOpera) {
                s.pixelTop = menuLayer.style.pixelTop + l.Menu.submenuYOffset;
                if (l.Menu.vertical) {
                    if (l.Menu.submenuRelativeToItem) s.pixelTop += l.style.pixelTop;
                    s.pixelLeft = l.style.pixelWidth + menuLayer.style.pixelLeft + l.Menu.submenuXOffset;
                    s.left = s.pixelLeft + 'px';
                } else {
                    s.pixelTop += l.style.pixelTop;
                    if (l.Menu.submenuRelativeToItem) s.pixelLeft = menuLayer.style.pixelLeft + l.style.pixelLeft + l.style.pixelWidth + (2 * l.Menu.menuBorder) + l.Menu.submenuXOffset;
                    else s.pixelLeft = (menuLayer.style.pixelWidth - 4 * l.Menu.menuBorder) + menuLayer.style.pixelLeft + l.Menu.submenuXOffset;
                    s.left = s.pixelLeft + 'px';
                }
            } else {
                var top = parseInt(menuLayer.style.top) + l.Menu.submenuYOffset;
                var left = 0;
                if (l.Menu.vertical) {
                    if (l.Menu.submenuRelativeToItem) top += parseInt(l.style.top);
                    left = (parseInt(menuLayer.style.width) - 4 * l.Menu.menuBorder) + parseInt(menuLayer.style.left) + l.Menu.submenuXOffset;
                } else {
                    top += parseInt(l.style.top);
                    if (l.Menu.submenuRelativeToItem) left = parseInt(menuLayer.style.left) + parseInt(l.style.left) + parseInt(l.style.width) + (2 * l.Menu.menuBorder) + l.Menu.submenuXOffset;
                    else left = (parseInt(menuLayer.style.width) - 4 * l.Menu.menuBorder) + parseInt(menuLayer.style.left) + l.Menu.submenuXOffset;
                }
                s.top = top + 'px';
                s.left = left + 'px';
            }
            childMenu.style.visibility = "inherit";
        } else return;
        window.activeMenus[window.activeMenus.length] = childMenu;
    }
}

function hideActiveMenus() {
    if (!window.activeMenus) return;
    for (var i = 0; i < window.activeMenus.length; i++) {
        if (!activeMenus[i]) continue;
        if (activeMenus[i].visibility && activeMenus[i].Menu && !window.mmIsOpera) {
            activeMenus[i].visibility = "hidden";
            activeMenus[i].Menu.container.visibility = "hidden";
            activeMenus[i].Menu.container.clip.left = 0;
        } else if (activeMenus[i].style) {
            var s = activeMenus[i].style;
            s.visibility = "hidden";
            s.left = '-200px';
            s.top = '-200px';
        }
    }
    if (window.ActiveMenuItem) hideMenu(false, false);
    window.activeMenus.length = 0;
}

function moveXbySlicePos(x, img) {
    if (!document.layers) {
        var onWindows = navigator.platform ? navigator.platform == "Win32" : false;
        var macIE45 = document.all && !onWindows && getExplorerVersion() == 4.5;
        var par = img;
        var lastOffset = 0;
        while (par) {
            if (par.leftMargin && !onWindows) x += parseInt(par.leftMargin);
            if ((par.offsetLeft != lastOffset) && par.offsetLeft) x += parseInt(par.offsetLeft);
            if (par.offsetLeft != 0) lastOffset = par.offsetLeft;
            par = macIE45 ? par.parentElement : par.offsetParent;
        }
    } else if (img.x) x += img.x;
    return x;
}

function moveYbySlicePos(y, img) {
    if (!document.layers) {
        var onWindows = navigator.platform ? navigator.platform == "Win32" : false;
        var macIE45 = document.all && !onWindows && getExplorerVersion() == 4.5;
        var par = img;
        var lastOffset = 0;
        while (par) {
            if (par.topMargin && !onWindows) y += parseInt(par.topMargin);
            if ((par.offsetTop != lastOffset) && par.offsetTop) y += parseInt(par.offsetTop);
            if (par.offsetTop != 0) lastOffset = par.offsetTop;
            par = macIE45 ? par.parentElement : par.offsetParent;
        }
    } else if (img.y >= 0) y += img.y;
    return y;
}

function MM_findObj(n, d) { //v4.01
    var p, i, x; if (!d) d = document; if ((p = n.indexOf("?")) > 0 && parent.frames.length) {
        d = parent.frames[n.substring(p + 1)].document; n = n.substring(0, p);
    }
    if (!(x = d[n]) && d.all) x = d.all[n]; for (i = 0; !x && i < d.forms.length; i++) x = d.forms[i][n];
    for (i = 0; !x && d.layers && i < d.layers.length; i++) x = MM_findObj(n, d.layers[i].document);
    if (!x && d.getElementById) x = d.getElementById(n); return x;
}

function MM_swapImage() { //v3.0
    var i, j = 0, x, a = MM_swapImage.arguments; document.MM_sr = new Array; for (i = 0; i < (a.length - 2); i += 3)
        if ((x = MM_findObj(a[i])) != null) { document.MM_sr[j++] = x; if (!x.oSrc) x.oSrc = x.src; x.src = a[i + 2]; }
}
function MM_swapImgRestore() { //v3.0
    var i, x, a = document.MM_sr; for (i = 0; a && i < a.length && (x = a[i]) && x.oSrc; i++) x.src = x.oSrc;
}

function MM_preloadImages() { //v3.0
    var d = document; if (d.images) {
        if (!d.MM_p) d.MM_p = new Array();
        var i, j = d.MM_p.length, a = MM_preloadImages.arguments; for (i = 0; i < a.length; i++)
            if (a[i].indexOf("#") != 0) { d.MM_p[j] = new Image; d.MM_p[j++].src = a[i]; } 
    }
}


function ajuda(tutorial) {
    var altura = 400;
    var largura = 600;
    var ajuda = "";

    switch (tutorial) {
        case 1:
            var url = "/adm/tutoriais/adm/default.asp";
            break;
        case 2:
            var url = "/adm/tutoriais/winzip/tutorial_winzip.asp";
            break;
        case 3:
            var url = "/adm/tutoriais/html/tutorial_html.asp";
            break;
        case 4:
            var url = "/adm/tutoriais/pdf/distiller.asp";
            break;
    }

    x = (screen.width - largura) / 2;
    y = (screen.height - altura) / 2;

    ajuda = window.open(url, 'ajuda', 'toolbar=no,resizable=yes,location=no,menubar=no,status=no,scrollbars=yes,copyhistory=no,directories=no,width=' + largura + ',height=' + altura + ',left=' + x + ',top=' + y);
    ajuda.focus();
}


function contato_adm() {
    var altura = 550;
    var largura = 360;
    var contato = "";

    var url = "/adm/contato.asp";

    x = (screen.width - largura) / 2;
    y = (screen.height - altura) / 2;

    contato = window.open(url, 'contato', 'toolbar=no,resizable=yes,location=no,menubar=no,status=no,scrollbars=yes,copyhistory=no,directories=no,width=' + largura + ',height=' + altura + ',left=' + x + ',top=' + y);
    contato.focus();
}

function urlBanner(local) {
    var url = "";
    if (local == 1) {
        //Super Banner
        var url = document.banner1.url_banner1.value;
        document.location.assign(url);
        return;
    }
    if (local == 2) {
        //Full Banner
        var url = document.banner2.url_banner2.value;
        document.location.assign(url);
        return;
    }
    if (local == 3) {
        //Half Banner
        var url = document.banner3.url_banner3.value;
        document.location.assign(url);
        return;
    }
    if (local == 4) {
        //Full Banner 2
        var url = document.banner4.url_banner4.value;
        document.location.assign(url);
        return;
    }
}
//Funções para formatar textos
function button_over(eButton) {
    eButton.style.backgroundColor = "#B5BDD6";
    eButton.style.borderColor = "darkblue darkblue darkblue darkblue";
}
function button_out(eButton) {
    eButton.style.backgroundColor = "threedface";
    eButton.style.borderColor = "threedface";
}
function button_down(eButton) {
    eButton.style.backgroundColor = "#8494B5";
    eButton.style.borderColor = "darkblue darkblue darkblue darkblue";
}
function button_up(eButton) {
    eButton.style.backgroundColor = "#B5BDD6";
    eButton.style.borderColor = "darkblue darkblue darkblue darkblue";
    eButton = null;
}
//~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
function cmdExec(cmd, opt) {
    if (isHTMLMode) { alert("Por favor retire a seleção do 'Ver código em HTML'"); return; }
    idContent.document.execCommand(cmd, "", opt); idContent.focus();
}
function setMode(bMode) {
    var sTmp;
    isHTMLMode =
	bMode; if (isHTMLMode) {
        sTmp = idContent.document.body.innerHTML; idContent.document.body.innerText =
	sTmp;
    } else { sTmp = idContent.document.body.innerText; idContent.document.body.innerHTML = sTmp; }
    idContent.focus();
}
function insertImage() {
    if (isHTMLMode) { alert("Please uncheck 'Edit HTML'"); return; }
    var sImgSrc = prompt("Insira o arquivo de imagem (Você pode usar uma imagem local) : ", "");
    if (sImgSrc != null) cmdExec("InsertImage", sImgSrc);
}
function foreColor() {
    var arr = showModalDialog("selcolor.htm", "", "font-family:Verdana; font-size:12; dialogWidth:30em; dialogHeight:34em");
    if (arr != null) cmdExec("ForeColor", arr);
}
function createLink(inserirLink) {
    switch (inserirLink) {
        case "blank":
            combo = prompt("Insira a URL", "http://");
            if (combo != null) {
                var kk = idContent.document.selection.createRange();
                var texto = idContent.document.selection.createRange().text;
                str = "<a href=" + Trim(combo) + " target='_blank'>"+ texto + "</a>";
                kk.pasteHTML(str);
            }
            break;

        case "self":
            combo = prompt("Insira a URL", "http://");
            alert(combo);
            if (combo != null) {
                var kk = idContent.document.selection.createRange();
                var texto = idContent.document.selection.createRange().text;
                str = "<a href='" + Trim(combo) + "' target='_self'>" + texto + "</a>";
                kk.pasteHTML(str);
            }
            break;
    }
}
//Fim da função
//Função que restringe o teclado para a digitar apenas número
function SoNumero(e) {
    if (document.all) // Internet Explorer
        var tecla = event.keyCode;
    else if (document.layers) // Nestcape
        var tecla = e.which;
    if (tecla > 47 && tecla < 58) // numeros de 0 a 9
        return true;
    else {
        if (tecla != 8) // backspace
            event.keyCode = 0; //return false;
        else
            return true;
    }
}
//Fim da função
//Função trim semelhante ao ASP
function Trim(str) {
    while (str.charAt(0) == " ")
        str = str.substr(1, str.length - 1);
    while (str.charAt(str.length - 1) == " ")
        str = str.substr(0, str.length - 1);
    return str;
}
////Fim da função

function conjuntura() {
    var x, y, largura, altura, url;
    largura = 650;
    altura = 450;
    url = "http://www.oswaldocruz.br/conjuntura/index.html";
    x = (screen.width - largura) / 2;
    y = (screen.height - altura) / 2;
    if (navigator.appName == "Netscape") {
        janela = window.open(url, 'janela', 'toolbar=no,resizable=no,location=no,menubar=no,status=no,scrollbars=no,copyhistory=no,directories=no,width=' + (largura + 10) + ',height=' + (altura + 10) + ',screenX=' + x + ',screenY=' + y);
    }
    else {
        janela = window.open(url, 'janela', 'toolbar=no,resizable=no,location=no,menubar=no,status=no,scrollbars=no,copyhistory=no,directories=no,width=' + largura + ',height=' + altura + ',left=' + x + ',top=' + y);
    }
    janela.focus();
}

function oficiais() {
    var x, y, largura, altura, url;
    largura = 600;
    altura = 450;
    url = "/oficial/home.asp";
    x = (screen.width - largura) / 2;
    y = (screen.height - altura) / 2;
    janela = window.open(url, 'janela', 'toolbar=no,resizable=no,location=no,menubar=no,status=no,scrollbars=yes,copyhistory=no,directories=no,width=' + largura + ',height=' + altura + ',left=' + x + ',top=' + y);
    janela.focus();
}

function hipertensao() {
    var x, y, largura, altura, url;
    largura = 502;
    altura = 430;
    url = "/servicos/eventos/hipertensao_2004/default.asp";
    x = (screen.width - largura) / 2;
    y = (screen.height - altura) / 2;
    if (navigator.appName == "Netscape") {
        janela = window.open(url, 'janela', 'toolbar=no,resizable=no,location=no,menubar=no,status=no,scrollbars=yes,copyhistory=no,directories=no,width=' + (largura + 10) + ',height=' + (altura + 10) + ',screenX=' + x + ',screenY=' + y);
    }
    else {
        janela = window.open(url, 'janela', 'toolbar=no,resizable=no,location=no,menubar=no,status=no,scrollbars=yes,copyhistory=no,directories=no,width=' + largura + ',height=' + altura + ',left=' + x + ',top=' + y);
    }
    janela.focus();
}

function ficha_seguranca() {
    var x, y, largura, altura, url;
    largura = 776;
    altura = 468;
    url = "/fichas_de_seguranca/default.asp";
    x = (screen.width - largura) / 2;
    y = (screen.height - altura) / 2;
    janela = window.open(url, 'janela', 'toolbar=no,resizable=no,location=no,menubar=no,status=no,scrollbars=no,copyhistory=no,directories=no,width=' + largura + ',height=' + altura + ',left=' + x + ',top=' + y);
    janela.focus();
}

function psuRH() {
    var x, y, largura, altura, url;
    largura = 640;
    altura = 480;
    url = "/servicos/campanhas/processo_seletivo_rh/";
    x = (screen.width - largura) / 2;
    y = (screen.height - altura) / 2;
    janela = window.open(url, 'janela', 'toolbar=no,resizable=no,location=no,menubar=no,status=no,scrollbars=no,copyhistory=no,directories=no,width=' + largura + ',height=' + altura + ',left=' + x + ',top=' + y);
    janela.focus();
    onClickFloater(0);
}

function onClickFloater(action) {
    switch (action) {
        case 0:
            shDiv("floaterProcesso", "", "hide");
            break;
    }
}
// função para diminuir e aumentar texto
var tagAlvo = new Array('p');
var tamanhos = new Array('11px', '12px', '13px', '14px', '15px', '16px', '17px');
var tamanhoInicial = 2;
function mudaTamanho(idAlvo, acao) {

    if (!document.getElementById) return
    var selecionados = null, tamanho = tamanhoInicial, i, j, tagsAlvo;
    tamanho += acao;
    if (tamanho < 0) tamanho = 0;
    if (tamanho > 6) tamanho = 6;
    tamanhoInicial = tamanho;
    if (!(selecionados = document.getElementById(idAlvo))) selecionados = document.getElementsByTagName(idAlvo)[0];

    selecionados.style.fontSize = tamanhos[tamanho];

    for (i = 0; i < tagAlvo.length; i++) {
        tagsAlvo = selecionados.getElementsByTagName(tagAlvo[i]);
        for (j = 0; j < tagsAlvo.length; j++) tagsAlvo[j].style.fontSize = tamanhos[tamanho];
    }
}

//fim da função (by marcelo)



//Marcelo Penninck da Silva
//Data:08/09/2009
//Criando o objetos AJAX
function objetus() {

    xmlhttp = false;
    this.AjaxFailedAlert = "Seu navegador não suporta as funcionalidades deste site";

    this.encodeURIString = true;

    this.execute = false;

    if (window.XMLHttpRequest) {

        this.xmlhttp = new XMLHttpRequest();

        if (this.xmlhttp.overrideMimeType) {

            this.xmlhttp.overrideMimeType('text/xml');

        }

    }

    else if (window.ActiveXObject) { // IE

        try {

            this.xmlhttp = new ActiveXObject("Msxml2.XMLHTTP");

        } catch (e) {

            try {

                this.xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");

            } catch (e) {

                this.xmlhttp = null;

            }

        }

        if (!this.xmlhttp && typeof XMLHttpRequest != 'undefined') {

            this.xmlhttp = new XMLHttpRequest();

            if (!this.xmlhttp) {

                this.failed = true;

            }

        }

    }

    return this.xmlhttp;

}