$(document).ready(function()
	{
	function Help()
		{
		$.blockUI({
		message:$("#help"),
		fadeIn: 700,
		fadeOut: 1000,
		showOverlay: true,
		centerY: true,
		css:{
			width:"520px",
			top:"10px",
			left:($(window).width()-520)/2+"px",
			border:"none"
			}
		});
		$("#close_help").attr("title","Zavřít nápovědu").click($.unblockUI);
		}
	$("#help_btn").click(function()
		{
		Help();
		});
	});
function Open_window(url)
	{
	window.open(url,"okno","height=600px, width=600px, top=10px, left=100px,status=no,toolbar=no,location=no,scrollbars=yes,resizable=yes,copyhistory=no");
	}
function Print()
	{
	var btn=document.getElementById("print_btn");
	btn.style.display="none";
	window.print();
	window.close();
	}
function Close_registration()
	{
	var is_ok=window.confirm("Chcete opravdu pokračovat? Po uzamčení nebudete mít již možnost údaje ve formulářích měnit.");
	if(is_ok)
		{
		window.location="/louskacek/registrace-praci.html?logins=true";
		}
	}
function Count_chars()
	{
	var max_chars=255;
	var chars=this.value.length;
	var id_span="#"+this.getAttribute("id")+"_count_char";
	$(id_span).html("Počet znaků: "+chars);
	if(chars>=max_chars)
		{
		this.value=this.value.substring(0,max_chars);
		$(id_span).html("Dosažen maximální počet znaků!");
		}
	}