$(document).ready(function(){
    $.ajax({
        url: 'index.php',
        data: 'acao=getImagemHome',
        success : function(res){
            if ($.browser.msie && parseInt($.browser.version.substr(0,1)) < 7){
                if (res != 0){
                   var largura = parseInt($("#largura").val());
                   var altura = parseInt($("#altura").val());
                    var resposta = res.split("|");
                    if(resposta[1] == ""){
                        resposta[1] = "#";
                    }
                    window.open('index.php?acao=popup&amp;file='+resposta[0]+'&amp;link='+resposta[1], '', 'width='+largura+', height='+altura);
                }
            } else {
                if (res != 0){
                    var resposta = res.split("|");
                    if(resposta[1] == ""){
                        resposta[1] = "#";
                    }
                    if(resposta[1] == '#'){
                        resposta[2] = "_self";
                    }
                    var largura = parseInt($("#largura").val());
                    $.fn.nyroModalManual({
                        content: '<a href="'+resposta[1]+'" target="'+resposta[2]+'"><img id="closeModal" src="image.php?tam=g&amp;file=/'+resposta[0]+'" border=0 /></a>',
                        width : largura +20,
                        height: $("#altura").val(), // imagem ideal deve ter 600X450
                        closeButton: '<a href="#" class="nyroModalClose" id="closeBut" style="position: absolute;outline: 0;display: block;top: -16px;right: 19px;width: 16px;height: 16px;text-indent: -9999em;background: url(imagens/closex.gif) no-repeat;" title="Fechar">Fechar</a>'
                    });
                }
                $('#closeModal').click(function(){
                    $.nyroModalRemove();
                });
            }
        }
    })
});