function validar_formulario(){
	if (document.getElementById('nome').value  == ''){
		alert("Os campos com * são obrigatórios");
		document.getElementById('nome').focus();
		return false;
	} 
	if (document.getElementById('pais').value  == ''){
		alert("Os campos com * são obrigatórios");
		document.getElementById('pais').focus();
		return false;
	} 
	if (document.getElementById('email').value  == ''){
		alert("Os campos com * são obrigatórios");
		document.getElementById('email').focus();
		return false;
	} 
	return true;
}

function validar_midia(){
	if (document.getElementById('nome').value  == ''){
		alert("Os campos com * são obrigatórios");
		document.getElementById('nome').focus();
		return false;
	} 
	if (document.getElementById('email').value  == ''){
		alert("Os campos com * são obrigatórios");
		document.getElementById('email').focus();
		return false;
	} 
	if (document.getElementById('titulo').value  == ''){
		alert("Os campos com * são obrigatórios");
		document.getElementById('titulo').focus();
		return false;
	} 
	if (document.getElementById('data').value  == ''){
		alert("Os campos com * são obrigatórios");
		document.getElementById('data').focus();
		return false;
	} 
	if (document.getElementById('texto').value  == ''){
		alert("Os campos com * são obrigatórios");
		document.getElementById('texto').focus();
		return false;
	} 
	return true;
}

function abre_imagem(id){
	url = "http://lba.inpa.gov.br/imprensa/materia.php?id=" + id;
	titulo = "Detalhes";
	window.open(url, titulo, "width=400,height=500, resizable=yes, scrollbars=yes");
}
