function HeightCorrection()
{
	var l = document.getElementById("clinks");
	var r = document.getElementById("crechts");
	var cm = document.getElementById("contentlinks");

	lh = parseInt(l.offsetTop) + parseInt(l.offsetHeight) - 500;
	rh = parseInt(r.offsetTop) + parseInt(r.offsetHeight);

	if(lh<=rh)
	{
	  var nmh = 0;
	  nrh = rh - lh + 26;
	  cm.style.paddingBottom = nrh + "px";
	}
	else
	{
	  cm.style.paddingBottom = "30px";
	}
	return;
}