/* Criado por José Airosa - CoreCreations, Todos os direitos reservados 2008 */

function mostra_caixa_email(obj)
{
	var largura = document.getElementById(obj).style.width/2;
	var altura = document.getElementById(obj).style.height/2;
	if(typeof(window.pageYOffset) == 'number')
	{
		// todos os browsers excepto  IE
		posicaoX = Math.floor((window.innerWidth - largura)/2+window.pageXOffset);
		posicaoY = Math.floor((window.innerHeight - altura)/2+window.pageYOffset);
	}
	else
	{
		// IE
		sLeft = document.body.scrollLeft || document.documentElement.scrollLeft;
		sTop = document.body.scrollTop || document.documentElement.scrollTop;
		posicaoX = Math.floor((document.documentElement.offsetWidth-largura)/2+(sLeft));
		posicaoY = Math.floor((document.documentElement.offsetHeight-altura)/2+(sTop));
	}
	document.getElementById(obj).style.left = posicaoX-100+"px";
	document.getElementById(obj).style.top = posicaoY-50+"px";
	document.getElementById(obj).style.display = 'block';
}

function esconde_caixa_email(obj)
{
	document.getElementById(obj).style.display = 'none';	
}