function contaChars(obj, field, limite){
    if(!limite) limite = 300;
    if(field.value.length > limite){
        field.value = field.value.substr(0,limite);
    }
    document.getElementById(obj).innerHTML = limite - field.value.length;
}

function imagem(arquivo) {
    var win = window.open('imagem.php?imagem='+arquivo, 'imagem', 'scrollbars=no,resizable=no,height=400,width=370,left=80,top=80,status=yes');
}

function recomende(altar) {
    var win = window.open('recomende.php?altar_id='+altar, 'recomende', 'scrollbars=yes,resizable=no,height=400,width=370,left=80,top=80,status=yes');
}