﻿function AbrirGaleria(URL){
day = new Date();
id = day.getTime();
eval("page" + id + " = window.open(URL, '" + id + "', 'toolbar=0,scrollbars=0,location=0,statusbar=1,menubar=0,resizable=0,width=700,height=508,left=440,top=312');");
}

function AbrirVideo(URL){
day = new Date();
id = day.getTime();
eval("page" + id + " = window.open(URL, '" + id + "', 'toolbar=0,scrollbars=0,location=0,statusbar=1,menubar=0,resizable=0,width=600,height=520,left=440,top=312');");
}

function validar_contato(){
    if(document.getElementById("t_nome").value=='') {
		alert('O campo nome é obrigatório!');
		document.getElementById("t_nome").focus();
		return false;
	}
	if(document.getElementById("t_email").value=='') {
		alert('O campo e-mail é obrigatório!');
		document.getElementById("t_email").focus();
		return false;
	}
	if(document.getElementById("d_destino").value=='') {
		alert('O campo destino é obrigatório!');
		document.getElementById("d_destino").focus();
		return false;
	}
	if(document.getElementById("t_mensagem").value=='') {
		alert('O campo mensagem é obrigatório!');
		document.getElementById("t_mensagem").focus();
		return false;
	}
	return true;
}