

function abrir_pop(URL, largura, altura) {
     var width = largura;
     var height = altura;
     var left = 120;
     var top = 99;

   window.open(URL,"Chat", "width="+width+", height="+height+", top="+top+", left="+left+", toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=0,resizabl=0");
}

 function ValidaCamposOff() {

    if (document.getElementById("txtNomeVisitante").value==""){
	 alert("Campo Nome é obrigatório");
	 document.getElementById("txtNomeVisitante").focus();
     return false;
	}
	if (document.getElementById("txtEmail").value==""){
	 alert("Campo Email é obrigatório");
	 document.getElementById("txtEmail").focus();
     return false;
	}
	if (document.getElementById("txtaPergunta").value==""){
	 alert("Campo Descrição é obrigatório");
	 document.getElementById("txtaPergunta").focus();
     return false;
	}
    else {
      return true;
    }
 }


