function openForm(href) {window.open(href, 'form', 'width=800,height=550,status=yes,scrollbars=yes'); return false;}

// pokaż-ukryj odpowiedz

function pokazUkryj(id)
{
	var lista = document.getElementById(id);
	if(lista.className == "hide") {
		lista.className = "";
	}
	else {
		lista.className = "hide";
	}
}

//
function popWindow(wName){
features = 'width=800,height=550,toolbar=no,location=no,directories=no,menubar=no,scrollbars=yes,copyhistory=no,resizable=no';
pop = window.open('',wName,features);
if(pop.focus){ pop.focus(); }
return true;
}
