// JavaScript Document
function verificar() {
	msn = "POR FAVOR: \n\n";
	msn2 = "";
	
	if (document.frm.nome.value == "") 
		msn2 += "o campo NOME o preenchimento obrigatório.\n";
		
	if (document.frm.email.value == "") 
		msn2 += "o campo E-MAIL o preenchimento obrigatório.\n";
	
	if (document.frm.telefone.value == "" || document.frm.ddd.value == "") 
		msn2 += "o campo TELEFONE o preenchimento obrigatório.\n";
	
	if (document.frm.cidade.value == "")
		msn2 += "o campo CIDADE o preenchimento obrigatório.\n";
		
	if (document.frm.estado.value == "") 
		msn2 += "o campo ESTADO o preenchimento obrigatório.\n";
	
	if (msn2 != ""){
		alert(msn+msn2);
	} else {
		document.frm.submit();
	}
}

function ClicktoCall()
{
	
	var W = 368;
	var H = 382;
	var X = 180;
	var Y = Math.ceil( (window.screen.width - W) / 2 );
	Atendimento_Online = window.open('call.php','Atendimento_Online','width='+W+',height='+H+',top='+X+',left='+Y+',location=no,status=no,menubar=no,scrollbars=no,resizable=no,directories=no,toolbar=no');	
}