// Contato
function validacont(){

	var nome 		= document.forms['cont'].elements['nome'];
	var email 		= document.forms['cont'].elements['email'];
	var assunto 	= document.forms['cont'].elements['assunto'];
	var mensagem 	= document.forms['cont'].elements['mensagem'];

	if (nome.value=="")		{alert('Por favor, informe o Nome.'); 	 nome.focus(); return false; }
	if (email.value=="")	{alert('Por favor, informe o E-mail.');  email.focus(); return false; }
	if (assunto.value=="")	{alert('Por favor, informe o Assunto.'); assunto.focus(); return false; }
	if (mensagem.value=="")	{alert('Por favor, informe a Mensagem.'); mensagem.focus(); return false; }
}


//GALERIA
function troca_gde(img,id,w,h){
	document.getElementById("pic_gde").innerHTML = '<img src="images/galeria/'+img+'" alt="" border="0" style="width:'+w+'px; height:'+h+'px" />'; 
	document.getElementById("foto_atual").innerHTML = 'Voc&ecirc; est&aacute; na foto: '+id; 
}


function abrir(){
window.open('mapa.php','Mapa','toolbar=no,location=no,status=no,menubar=no,scrollbars=no,resizable=no,width=704,height=550');
}
