function Alerta(url, msg)
{
	window.alert(msg);
	window.location = url;
}

function Excluir(pagina)
{
	var confirmar = confirm("Deseja realmente excluir essa informação?");
	if(confirmar)
	{
		window.location = pagina;
	}
	else
	{
		return false;
	}
}

function MudarImagem(id, img)
{
	document.getElementById(id).src = img;
}

function Imagem(id, img)
{
	document.getElementById(id).src = img;
}