



function checkContentHeight()
{
    return 0;
	if (document.getElementById)
	{
		contentLeftHandle = document.getElementById("contentLeft");
		contentRightHandle = document.getElementById("contentRight");
	}
	else if (document.all)
	{
		contentLeftHandle = document.all["contentLeft"];
		contentRightHandle = document.all["contentRight"];
	}

	if (contentLeftHandle.scrollHeight < 650)
	    {
		contentLeftHandle.style.height = "650px";
	}

	if (contentLeftHandle.scrollHeight < contentRightHandle.scrollHeight)
	{
		contentLeftHandle.style.height = contentRightHandle.scrollHeight + 50 + "px";
	}

	return;
}
