﻿
    function ProdPrint(fCodigo)
    {
	    var iTopo, iLeft
	    var fLargura, fAltura;
	    
	    fLargura = 650;
	    fAltura  = 520;
	    iTopo    = (window.screen.height / 2) - (fAltura / 2);
	    iLeft    = (window.screen.width / 2) - (fLargura / 2);

        window.open('print.aspx?COD=' + fCodigo, '_Print', "width="+ fLargura +", height="+ fAltura +", left="+ iLeft +", top=" + iTopo +", scrollbars=yes, resizable=yes, toolbar=yes");
    }


    function MenuPrincipal(IndiceMenu)
    {
        var ID_Item;
        var className_Atual;
        
        // Pegando o Indice do Menu
        ID_Item = IndiceMenu.id.substr(6, IndiceMenu.id.length-6);
        
        // Pegando o className Atual
        className_Atual = document.getElementById("img01_"+ ID_Item).className;

        // Verificando qual é o className Atual para decidir qual className aplicar
        if( className_Atual == "lnk-desa" )
        {
            document.getElementById("img01_"+ ID_Item).className = "lnk-habi";
        }
        else
        {
            document.getElementById("img01_"+ ID_Item).className = "lnk-desa";
        }
    }
    
    
    
    function MenuInterno(Item)
    {
        var ID_Item;
        var SetaAtual;
                
        // Pegando o ID do Menu
        ID_Item = Item.id.substr(6, Item.id.length-6);       
        // Pegando qual a seta Atual
        SetaAtual = document.getElementById("img02_" + ID_Item).alt;
        if( SetaAtual == "OFF" )
        {
            document.getElementById("img02_" + ID_Item).alt = "ON";
            document.getElementById("img02_" + ID_Item).src = "../imgs/seta-box01-on.gif";
        }
        else
        {
            document.getElementById("img02_" + ID_Item).alt = "OFF";
            document.getElementById("img02_" + ID_Item).src = "../imgs/seta-box01-off.gif";
        }
    }

