/*

Jornal A Voz da Região

Código: Byfred Designer (fredsoaresvanelli@hotmail.com);

*/

function confirmar(msg)
    {
        if (confirm(msg))
            {
                return true;
            }
        else
            {
                return false;
            }
    }

var over=true;

function iluminaNoticia(id)

    {

        tabela=document.getElementById(id);

        if (over)

            {

                tabela.style.backgroundColor='#f0f0f0';

                over=false;

            }

        else

            {

                tabela.style.backgroundColor='#fafafa';

                over=true;

            }

    }



function expandirMenu(id)

    {

        i=1;

        while (link=document.getElementById(id+i))

            {



                if (link.style.display=='none')

                    {

                        link.style.display='block';

                    }

                else

                    {

                        link.style.display='none';

                    }

                i++;

            }

    }

function confirmasenha (senha, csenha)
    {
        if (document.getElementById(senha).value!=document.getElementById(csenha))
            {
                window.alert("A senha e a confirmação não conferem");
                return false;
            }
        else
            {
                return true;
            }
    }

function novaJanela(url, nome, status, scroll, width, height, top, left)
    {
        window.open(url , nome, "status="+status+" , scrollbars="+scroll+" ,width="+width+", height="+height+" , top="+top+" , left="+left+"");
    }

$(function(){
    $('a.zoom').lightBox();
})
