bueno depende del navegador, aqui te pongo una funcion generica:
Código PHP:
function getBrowserHeight(){
if (window.innerHeight) return window.innerHeight;
else if (document.documentElement && document.documentElement.clientHeight != 0) return document.documentElement.clientHeight;
else if (document.body) return document.body.clientHeight;
return 0;
}