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-telo3').height=winH() - 229;
        document.getElementById('td-leva1').height=winH() - 447;
	}

function OpenJSLWindow(url, jmeno, w, h)
{
    Fokus = window.open(url, jmeno,'resizable=0,top=0,left=0,scrollbars=0,menubar=0,width=' + w + ',height=' + h);
    Fokus.focus()
}