
function checkHeight()
{
	if((document.body.scrollHeight -65)< 600)
	{
		document.getElementById("menudiv").style.height='100%';
	}
	else
	{
		document.getElementById("menudiv").style.height=(document.body.scrollHeight -65) + 'px';
	}
}
