// JavaScript Document
function ReturnHeight()
{
	if(document.body.clientHeight)
	{
		alert("document.body.clientHeight. " + document.body.clientHeight);
	}
	else if(window.innerHeight)
	{
		alert("window.innerHeight. " + window.innerHeight);
	}
}