
	function winSizer(){
		if (windowWidth < 1024){
			window.moveTo(0,0); 
			window.resizeTo(800,windowHeight); 
		}
	}

	function button_over(tlacitko){
		if (!tlacitko.disabled){
			tlacitko.style.backgroundColor = "#C2DAFE";
		}
	}

	function button_out(tlacitko){
		if (!tlacitko.disabled){
			tlacitko.style.backgroundColor = "#ffffff";
		}
	}

	function text_over(prvek){
		prvek.style.color = "#ff0000";
	}

	function text_out(prvek){
		prvek.style.color = "#000000";
	}

	function check_num(){
		with (event){
			if (keyCode<48 || keyCode>57) returnValue=false;
		}
	}

	function open_image(objekt,jazyk){
		window.open("system_objekty_image.php?lang="+jazyk+"&objekt="+objekt,"open_image","menubar=no,directories=no,toolbar=no,location=no,status=no,scrollbars=no,resizable=no,width=150,height=150");
	}

	function open_foto(objekt,jazyk){
		window.open("includePHP/system_objekty_image.php?lang="+jazyk+"&objekt="+objekt,"open_image","menubar=no,directories=no,toolbar=no,location=no,status=no,scrollbars=yes,resizable=no,width=150,height=150");
	}

	function open_foto_form_akce(akce,jazyk){
		window.open("includePHP/system_fotos_akce.php?lang="+jazyk+"&akce="+akce,"open_image_form","menubar=no,directories=no,toolbar=no,location=no,status=no,scrollbars=no,resizable=no,width=150,height=150");
	}

	function vysledky_open(soutezID,urovenID){
		window.open("includePHP/vysledky_tabulka.php?lang="+languagueJS+"&soutezID="+soutezID+"&urovenID="+urovenID,"zajezd_objednavka","menubar=no,directories=no,toolbar=no,location=no,status=no,scrollbars=yes,resizable=yes,width=800,height=500");
	}

	function statistikaHraciOPEN(systemID){
		window.open("includePHP/statistika_tabulka.php?lang="+languagueJS+"&idID="+systemID,"statistikaHraciOKNO","menubar=no,directories=no,toolbar=no,location=no,status=no,scrollbars=yes,resizable=yes,width=800,height=500");
	}

	function showKOM(komID){
		if (document.getElementById("obs"+komID).style.display == 'none')
		{
			document.getElementById("obs"+komID).style.display = '';
		}else{
			document.getElementById("obs"+komID).style.display = 'none';
		}
	}

	function checkMESSAGES(){
		if (messageCONTENT){
//			showMESSAGE();
		} 
	}

	var helpTITLE = new Array();
	var helpCONTENS = new Array();

	windowWidth = window.screen.availWidth; 
	windowHeight = window.screen.availHeight; 

	document.ondragstart = new Function("return false;");
//	document.oncontextmenu = new Function("return false;");

