function iframeAutoHeight(quem){
    //by Micox - elmicox.blogspot.com - elmicox.com - webly.com.br  
    if(navigator.appName.indexOf("Internet Explorer")>-1){ //ie sucks
        var func_temp = function(){
            var val_temp = quem.contentWindow.document.body.scrollHeight + 5
            quem.style.height = val_temp + "px";
        }
        setTimeout(function() { func_temp() },100) //ie sucks
    }else{
        var val = quem.contentWindow.document.body.parentNode.offsetHeight + 5
        quem.style.height= val + "px";
    }    
}
function AbreImagem(imagem)
{
	var url = '/modulos/pop_up.html?foto=' + imagem;
	popup = window.open(url,'_blank','scrollbars=no,status=no,toolbar=no,resizable=no,location=no,menu=no,width=0,height=0');
	popup.focus();
}
