$(document).ready(function() 
{
if(window.innerHeight) {
h=window.innerHeight-475;
} else {
h=document.documentElement.clientHeight-475;
}
$('#divHeight').css('height', h);
});