//Verifica Fale conosco
function VerificaForm(form)
{
	if(form.nome.value=="")
		{
		alert("Atenção!\nPreencha o campo Nome!")
		form.nome.focus();
		return false;
		}
		
	if(form.email.value=="")
		{
		alert("Atenção!\nPreenha o campo E-Mail!")
		form.email.focus();
		return false;
		}
}	

// Valida Formulario
function ValidaForm(form) {
	if (form.nome.value == "" || form.nome.value == "nome:") {
		alert("Atenção!\nO campo NOME deve ser preenchido.");
		form.nome.focus();
		return false;
	}

	if (form.email.value.search(/^\w+((-\w+)|(\.\w+))*\@\w+((\.|-)\w+)*\.\w+$/) == -1 || form.email.value == "email:") {
		alert("Atenção!\nO campo E-MAIL deve ser preenchido corretamente.");
		form.email.focus();
		return false;
	}
}
// -->

<!--
function MM_openBrWindowHor(nome) {
	largura = 600;
	altura = 450;
	posiDire = 100;
	posiTopo = 100;
	descr = "Agatha Construtora"
	x = largura;
	y = altura;
	novaJane = window.open( nome ,"","width=" + x + ",height=" + y + ",left=" + posiDire + ",top=" + posiTopo );
	novaJane.document.open();
	novaJane.document.write('<html><head>');
	novaJane.document.write('<title>' + descr + '</title>');
	novaJane.document.write('<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" /><style type="text/css"><!-- body { margin: 0; } --></style></head><body>');
	novaJane.document.write('<img src="' + nome + '">');
	novaJane.document.write('</body></html>');
	novaJane.document.close();
	novaJane.focus();
}
// -->

<!--
function MM_openBrWindowVert(nome) {
	largura = 500;
	altura = 700;
	posiDire = 100;
	posiTopo = 100;
	descr = "Agatha Construtora"
	x = largura;
	y = altura + 5;
	novaJane = window.open( nome ,"","width=" + x + ",height=" + y + ",left=" + posiDire + ",top=" + posiTopo );
	novaJane.document.open();
	novaJane.document.write('<html><head>');
	novaJane.document.write('<title>' + descr + '</title>');
	novaJane.document.write('<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" /><style type="text/css"><!-- body { margin: 0; } --></style></head><body>');
	novaJane.document.write('<img src="' + nome + '">');
	novaJane.document.write('</body></html>');
	novaJane.document.close();
	novaJane.focus();
}
// -->

// Abre Pop-up
function AbrePopUp(url, titulo, largura, altura, scrollbar) {
	var info = window.open(url ,titulo ,'width=' + largura + ', height=' + altura +', scrollbars=' + scrollbar + ', toolbar=no, location=no, status=yes, menubar=no, resizable=no, left=10, top=10');
	info.focus();
}
