function textLimit(obj, limit, msg) 
{
	if (obj.value.length > limit) {
		obj.value = obj.value.substring(0,limit);
		alert(msg);
	}
}
function NowyAdres(adres_new, adres_link, adres, odbior_osobisty) 
{
	var adres_new = document.getElementById(adres_new);
	var adres_link = document.getElementById(adres_link);
	var adres = document.getElementById(adres);
	var odbior_osobisty = document.getElementById(odbior_osobisty);
	
	if (adres_new.style.display == '' || adres_new.style.display == 'none') 
	{
		adres_new.style.display = 'block';
		adres_link.style.display = 'none';
		adres.style.display = 'none';
		odbior_osobisty.style.display = 'none';
	} 
	else 
	{
		adres_new.style.display = 'none';
	}
}
function JakoPrezent(prezent, prezent_link, odbior_osobisty, odbior_zapobraniem) 
{
	var prezent = document.getElementById(prezent);
	var prezent_link = document.getElementById(prezent_link);
	var odbior_osobisty = document.getElementById(odbior_osobisty);
	var odbior_zapobraniem = document.getElementById(odbior_zapobraniem);
	
	if (prezent.style.display == '' || prezent.style.display == 'none') 
	{
		prezent.style.display = 'block';
		prezent_link.style.display = 'none';
		odbior_osobisty.style.display = 'none';
		odbior_zapobraniem.style.display = 'none';
	} 
	else 
	{
		prezent.style.display = 'none';
	}
}