function es_chrome()
{
	return navigator.userAgent.toLowerCase().indexOf('chrome') > -1;
}

function llamarARedimension()
{
	if (document.all)
	{
		alto = document.body.scrollHeight;
	}
	else if(es_chrome())
	{
		alto = document.getElementById("imgAlto").offsetHeight
	}
	else
	{
		alto = document.body.offsetHeight;
	}
	parent.redimensionarAltoFrame(alto);
}