//Função para poupup
function abre_janela1(width, height, nome) {
var top; var left;
top = ( (screen.height/2) - (height/2) )
left = ( (screen.width/2) - (width/2) )
window.open('',nome,'width='+width+',height='+height+',scrollbars=yes,toolbar=no,location=no,status=yes,menubar=no,resizable=no,left='+left+',top='+top);
}

//Formulário de Contato
function form_contato(){
	if (document.contato.nome.value == "") 
	{
		alert("Digite o seu Nome");
		document.contato.nome.style.borderColor ="red";
		document.contato.nome.focus();
		return;
	}

	if (document.contato.email.value == "") 
	{
		alert("Digite o seu Email");
		document.contato.email.style.borderColor ="red";
		document.contato.email.focus();
		return;
	}
	
	var i = 0;
	if (document.contato.email.value.indexOf('@', i) == -1 )
	{
		alert("Por favor digite um Email valido!" ); 
		document.contato.email.focus(); 
		document.contato.email.style.borderColor ="red";
		return; 
	}
	
	if (document.contato.email.value.indexOf('.', i) == -1 )
	{
		alert("Por favor digite um Email valido!"); 
		document.contato.email.style.borderColor ="red";
		document.contato.email.focus(); 
		return; 
	}
	
	if (document.contato.telefone.value == "") 
	{
		alert("Digite o Telefone");
		document.contato.telefone.focus();
		document.contato.telefone.style.borderColor ="red";
		return;
	}
	
	if (document.contato.mensagem.value == "") 
	{
		alert("Digite a Mensagem");
		document.contato.mensagem.style.borderColor ="red";
		document.contato.mensagem.focus();
		return;
	}
//	mpg_optin = window.open("", "mpg_optin","toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=0,resizable=0,screenX=0,screenY=0,left=0,top=0,width=450,height=295");
	document.contato.submit();
}

function form_enviar(){

//	mpg_optin = window.open("", "mpg_optin","toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=0,resizable=0,screenX=0,screenY=0,left=0,top=0,width=450,height=295");
	document.endereco1.submit();
}

function form_enviar2(){

//	mpg_optin = window.open("", "mpg_optin","toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=0,resizable=0,screenX=0,screenY=0,left=0,top=0,width=450,height=295");
	document.endereco2.submit();
}

function form_enviar3(){

//	mpg_optin = window.open("", "mpg_optin","toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=0,resizable=0,screenX=0,screenY=0,left=0,top=0,width=450,height=295");
	document.endereco3.submit();
}
