// JavaScript Document
function showAgenda(fileID)
{	
	w = 750;
	h = 600;
	var wind = window.open('/flyer.php?id=' + fileID, 'wind', 'width=' + w + ', height=' + h + ', scrollbars=yes, resizable=yes');
	wind.resizeTo(w, h);
	wind.focus();
}

function mostraFoto(fileID)
{	
	w = 600;
	h = 600;
	var wind = window.open('/view_image.php?id=' + fileID, 'wind', 'width=' + w + ', height=' + h + ', scrollbars=yes, resizable=yes');
	wind.resizeTo(w, h);
	wind.focus();
}

function chkContactForm()
{
	var f = document.frm;
	if(f.elements['nome'].value.length == 0)
	{
			alert("O campo Nome é obrigatório.");
			f.elements['nome'].focus();
			return (false);
	}
	
	if(f.elements['email'].value.length == 0)
	{
			alert("O campo E-mail é obrigatório.");
			f.elements['email'].focus();
			return (false);
	}
	
	if(f.elements['msg'].value.length == 0)
	{
			alert("O campo Mensagem é obrigatório.");
			f.elements['msg'].focus();
			return (false);
	}
	
	return (true);		
}