<!--
/*-----------------------------------------------------------------------------*\
|																				|
|	file:		main.js 														|
|	purpose:	javascripts for tacbus											|
|	copyright: 	(c) 2006 Oto Spál												|
|																				|
\*-----------------------------------------------------------------------------*/

//resize function
function resizeDivs()
{
	var h = 0;
	if(typeof(window.innerHeight) == 'number')
		h = window.innerHeight;
	else if(document.documentElement && document.documentElement.clientWidth)
		h = document.documentElement.clientHeight;
	else if(document.body && document.body.clientWidth)
		h = document.body.clientHeight;
	
	h = h > 700 ? h : 700;
	
	document.getElementById('mainTab').style.height		= h + "px";
	document.getElementById('mainTab').style.maxHeight 	= h + "px";
}

-->