Below code will give the height of window (Browser) using JQuery.You can download the Jquery from
http://docs.jquery.com/Downloading_jQuery .
<script type="text/javascript" src="Script/jquery-1.3.2.js"></script>
<script type="text/javascript">
$(document).ready(function(){
alert($(window).height());
});
</script>