// <![CDATA[
function winH() {
	if (window.innerHeight) return window.innerHeight;
	else if (document.documentElement && document.documentElement.clientHeight)
		return document.documentElement.clientHeight;
	else if (document.body && document.body.clientHeight)
		return document.body.clientHeight;
	else return null;
	}
window.onload = function()
	{
		document.getElementById('td-telo2').height=winH() - 170;
	}
// ]]>
