function fc_link(var_link)
{
	document.location = var_link;
}

function pegarDiv(nome)
{
	if (document.getElementById)
	{
		this.obj = document.getElementById(nome);
	}
		else if (document.all)
	{
		this.obj = document.all[nome];
	}
		else if (document.layers)
	{
		this.obj = document.layers[nome];
	}
}