// JavaScript Document


function avaliaAnimal()
{
	doc = document.frmAnimal;
	
	if(doc.animal.value == "")
	{
		alert("Informe o nome do animal a ser cadastrado");
		doc.animal.focus();
		return false;
	}
}

function alterarAnimal(id_animal, id_exame, nome)
{
	doc = document.frmAnimal;
	doc.id_animal.value = id_animal;
	doc.id_exame.value = id_exame;
	doc.animal.value = nome;
	document.getElementById("acaoPagina").innerHTML = "ALTERAR ESPECIALIDADE";
}

function removerAnimal(id_animal, id_exame, nome)
{
	if(confirm("Deseja realmente remover o animal "+nome))
	{
		location.href='animal_remover.php?id_animal='+id_animal+'&id_exame='+id_exame;
	}
}

function abrirAnimal(id_exame)
{
	window.open('admin/animal_cadastrar.php?id_exame='+id_exame, '', 'scrollbars=auto,width=600,height=500,left=50,top=50')
}

