function send_form(frm_name)
{
	if (document.forms[frm_name])
	{
		document.forms[frm_name].submit();
	}
	else
	{
		alert ("Wystapił błąd - brak formularza o nazwie '"+frm_name+"'.");
	}
}

function ppLive()
{
	var w = 350;
	var h = 250;
	var x = (screen.width-w)/2;
	var y = (screen.height-h)/2;

	var page = "wyniki_popup.php";
	op="left=" + x + ",top=" + y + ",width=" + w + ",height=" + h + ",scrollbars=yes";


	ppLive = window.open(page,"popup",op);
	ppLive.focus();
}

function ppHlp(id)
{
	var w = 360;
	var h = 260;
	var x = (screen.width-w)/2;
	var y = (screen.height-h)/2;

	var page = "pphlp.php?id=" + id;

	op="left=" + x + ",top=" + y + ",width=" + w + ",height=" + h + ",scrollbars=yes";

	ppHlp = window.open(page,"popup",op);
	ppHlp.focus();
}

function image(fe,e,id,sx,sy)
{

	var w = sx;
	var h = sy+30;
	var x = (screen.width-w)/2;
	var y = (screen.height-h)/2;

	var page = "image.php?" + fe + "." + e + "." + id + "." + sx + "." + sy;

	op="left=" + x + ",top=" + y + ",width=" + w + ",height=" + h + ",scrollbars=no";

	ppImg = window.open(page,"popup",op);
	ppImg.focus();
}

