<!--

function win_open(plik, nazwa, w, h, scroll)
{
	if(window.screen) {
	  aw=screen.availwidth;
	  ah=screen.availheight;
	}else{
	  aw=640;
	  ah=450;
	}
	 ustawienia=
	 "left="+(aw-w)/2+","
	 +"top="+(ah-h)/2+","
	 +"screenX="+(aw-w)/2+","
	 +"screenY="+(ah-h)/2+","
	 +"width="+w+","
	 +"height="+h+","
	 +"toolbar=no,"
	 +"location=no,"
	 +"directories=no,"
	 +"status=yes,"
	 +"menubar=no,"
	 +"scrollbars="+scroll+","
	 +"resizable=no"
	 noweokno=window.open(plik, nazwa, ustawienia);
}

function fnSuma()
{
	alert(document.pageform.C27.value);
}
function sshow(e, txt)
{
	var el = document.getElementById("popBox");
	var a = el.style;
	var x = e.clientX;
	var y = e.clientY;

    x += document.documentElement.scrollLeft+document.body.scrollLeft;
	y += document.documentElement.scrollTop+document.body.scrollTop;
	a.left = x + 10 + "px";
	a.top = y + 10 + "px";
	a.visibility = 'visible';
	el.innerHTML = txt;
}

function hhide()
{
	var el = document.getElementById("popBox");

    el.style.visibility='hidden';
}

function clear_me_i(form)
{
	form.nazwisko.value = '';
	form.email.value = '';
	form.telefon.value = '';
}

function clear_me_ii(form)
{
	form.email_znajomego.value = '';
}

function check_form(form)
{
	if(form.email.value == '')
    	{
        	alert('Wprowad¼ w³asny adres e-mail.');
            form.email.focus();
        	return false;
        }
	if(form.email_znajomego.value == '')
    	{
        	alert('Wprowad¼ adres e-mail znajomego.');
            form.email_znajomego.focus();
        	return false;
        }
	return true;
}

-->