var origHeight;

function resizeDiv(valorStr) {
	if(document.body.offsetHeight <= valorStr){
		var alvo=document.getElementById('loginForm');
		alvo.style.height=valorStr+'px';
		//alert(valorStr);
	} else {
		var alvo=document.getElementById('loginForm');
		alvo.style.height='100%'; // tem de ser definido aki senaum naum funfa
		origHeight = document.body.offsetHeight;// uma saida seria gravar um cookie com este valor
		//alert("else "+origHeight);
	}
}

function resizeJanela() {
	var alvo=document.getElementById('loginForm');
	if(alvo.style.height != '100%'){
		var temp = alvo.style.height; 
		alturaGeral = temp.substring(-1,temp.length - 2); 
		if((document.body.offsetHeight) >= (parseInt(alturaGeral)) ){
			alvo.style.height='100%';
			origHeight = document.body.offsetHeight;
			//alert("passou");
		} 
	} else { //### ESTAVA EM 100% ####
		//alert("estava em 100%");
		//resizeDiv(document.body.offsetHeight);
		var temp = alvo.style.height; 
		alturaGeral = temp.substring(-1,temp.length - 2); 
		if((document.body.offsetHeight) >= (parseInt(alturaGeral)) ){
			alvo.style.height = origHeight; //talvez recuperar cookie gravado
			//alert("passou");
		} 
	}
}
//window.onresize = resizeJanela;

