// JavaScript Document

function checkContato() {
	missinginfo = "";
	if (document.form.nome.value == "") {
		missinginfo += "\n     -  Nome";
	}
	if (document.form.telefone.value == "") {
		missinginfo += "\n     -  Telefone";
	}
	if ((document.form.email.value == "") || 
		(document.form.email.value.indexOf('@') == -1) || 
		(document.form.email.value.indexOf('.') == -1)) {
		missinginfo += "\n     -  Email";
	}
	if (document.form.mensagem.value == "") {
		missinginfo += "\n     -  Mensagem";
	}
	if (missinginfo != "") {
		missinginfo ="_____________________________\n" +
		"Você não preencheu corretamente:\n" +
		missinginfo + "\n_____________________________" +
		"\nPor favor, preencha novamente!";
		alert(missinginfo);
		return false;
	}
		else return true;
}


function showhide2(objShowHide){
	d=document;layer="";
	if(d.getElementById)layer1=d.getElementById(objShowHide).style;
	else if(d.layers)layer1=document.layers[objShowHide];
	else return 1;
	if(layer1.display=="")layer1.display="none";
	if(layer1.display!="none")layer1.display="none";
	else layer1.display="block";
}


function popup_Empresa(URL) {
   var width = 461;
   var height = 283;
   var left = 10
   var top = 10
   window.open(URL,'Oximig', 'width='+width+', height='+height+', top='+top+', left='+left+', toolbar=no, location=no, directories=no, status=no, menubar=no, scrollbars=no, resizable=no, fullscreen=no');
}

function popup_dimensoes(URL) {
   var width = 220;
   var height = 120;
   var left = 10
   var top = 10
   window.open(URL,'Oximig', 'width='+width+', height='+height+', top='+top+', left='+left+', toolbar=no, location=no, directories=no, status=no, menubar=no, scrollbars=no, resizable=no, fullscreen=no');
}
