function fnGetWindowHeight() {
	var myHeight = 0;
	if(typeof(window.innerWidth) == 'number'){
		return window.innerHeight;
	}else if(document.documentElement && document.documentElement.clientHeight){
		return document.documentElement.clientHeight;
	}else if(document.body && document.body.clientHeight){
		return document.body.clientHeight;
	}
}

function fnPositionAll(){
	var nHeight=fnGetWindowHeight();
	
	var oMyDiv=document.getElementById("findoutmoreholder");
	if(nHeight>659){
		oMyDiv.style.height=nHeight-595+'px';
	}else{
		//oMyDiv.style.top=705+'px';
	}
}

window.onresize = fnPositionAll;
window.onload = fnPositionAll;
