/* Redirecciona o browser para a pagina...
==================================================================== */
function RedirectTo(page) {
	document.location = page;
}

/* Retrocede o browser uma página
==================================================================== */
function GoBack() {
	window.history.back();
}

/* Verifica se a tecla premida é um numero
==================================================================== */
function IsNumberKey(evt)
{
    var charCode = (evt.which) ? evt.which : event.keyCode
    if (charCode > 31 && (charCode < 48 || charCode > 57))
        return false;        
    return true;
}

/* Configura a altura minima do site
==================================================================== */
var WRAPPER_DIV = "wrapperIndex";
var CONTENT_DIV = "dMain";
function SetupHeights()
{     	
    var utilHeight = document.getElementById(WRAPPER_DIV).offsetHeight;
    var windowHeight = GetWindowHeight();
	if (windowHeight > utilHeight)
    {
        var gap = (windowHeight - utilHeight) - 50;
        var newHeight = document.getElementById(CONTENT_DIV).offsetHeight + gap;
        document.getElementById(CONTENT_DIV).style.minHeight = newHeight + 'px';
    }       
}
function GetWindowHeight()
{
    var alto = 0;
    if(typeof(window.innerWidth) == 'number')
    {
        alto = window.innerHeight;
    }
    else if(document.documentElement && (document.documentElement.clientWidth || document.documentElement.clientHeight) ) 
    {
        alto = document.documentElement.clientHeight;
    } 
    else if( document.body && ( document.body.clientWidth || document.body.clientHeight ) ) 
    {
        alto= document.body.clientHeight;
    }
    return alto;
}
