﻿function showFrameHeight(text) {
	alert(text);
}

function getWindowHeight() {
	var myHeight = 300;
	
	if( typeof( window.innerHeight ) == 'number' ) {
		//Non-IE - Firefox - Apple Safari
		myHeight = document.documentElement.scrollHeight;
		//showFrameHeight("Non-MSEI. Height: " + myHeight + "px");
	} 
	else if( document.body && document.body.scrollHeight) {
		//IE 6+ in 'standards compliant mode'
		myHeight = document.body.scrollHeight;
		//showFrameHeight("MSEI 6+. Height: " + myHeight + "px");
	} else if( document.body && document.body.clientHeight) {
		//IE 4 compatible
		myHeight = document.body.clientHeight;
		//showFrameHeight("MSEI 4. Height: " + myHeight + "px");
	}
	//showFrameHeight("Document height: " + myHeight + "px");
	return myHeight + 10;
}

