// presmerovani Iframe po kliknuti na odkaz
function mainWindowRedirect(param) {
	IFRAMEMain.location.href = param;
}
// skryvani a odkryvani submenu
function switchSubmenu(menuId) {
	if (document.getElementById(menuId).style.display == 'none')
	{
		document.getElementById(menuId).style.display = '';
	}
	else
	{
		document.getElementById(menuId).style.display = 'none';
	}
}
// uprava velikosti layoutu podle aktualniho rozliseni klienta
function resizeIframe() {
	// pro Netscape
	if (navigator.appName == 'Netscape')	
	{
		var ourWindowWidth = window.innerWidth;
		var ourWindowHeight = window.innerHeight;
		var odecist = 0;
	}
	// pro Microsoft Internet Explorer
	else if (navigator.appName == 'Microsoft Internet Explorer')	
	{
		var ourWindowWidth = document.body.offsetWidth;
		var ourWindowHeight = document.body.offsetHeight;
		var odecist = 5;
	}
	// pro ...
	else	
	{
		var ourWindowWidth = document.body.offsetWidth;
		var ourWindowHeight = document.body.offsetHeight;
		var odecist = 0;
	}
	document.getElementById('TABLEMain').style.height = ourWindowHeight - odecist;
	document.getElementById('IFRAMEMain').style.height = ourWindowHeight - 113;
	document.getElementById('DIVLinks').style.height = ourWindowHeight - 164;
}
// visualizace hover menu On
function menuLineOn(idNo) {
	document.getElementById('DIVLinkLine_'+ idNo).style.backgroundColor = '#840042';
	document.getElementById('DIVLinkLine_'+ idNo).style.color = '#efebe7';
}
// visualizace hover menu Off
function menuLineOff(idNo) {
	document.getElementById('DIVLinkLine_'+ idNo).style.backgroundColor = '#efebe7';
	document.getElementById('DIVLinkLine_'+ idNo).style.color = '#840042';
}
// visualizace hover submenu On
function submenuLineOn(idNo) {
	document.getElementById('DIVLinkSubLine_'+ idNo).style.backgroundColor = '#840042';
	document.getElementById('DIVLinkSubLine_'+ idNo).style.color = '#efebe7';
}
// visualizace hover submenu Off
function submenuLineOff(idNo) {
	document.getElementById('DIVLinkSubLine_'+ idNo).style.backgroundColor = '#efebe7';
	document.getElementById('DIVLinkSubLine_'+ idNo).style.color = '#840042';
}
