function otworz_okno(width_, height_, nazwaobrazka) {

szer = 0;
wys = 0;
x = 0;
y = 0;
if (screen) {
szer = screen.width
wys = screen.height
}

x = (szer/2) - (width_/2);
y = (wys/2) - (height_/2);

if ((szer<width_) || (wys<height_)) {
x=0;
y=0;
}
rysunek = window.open('big.php?pn='+nazwaobrazka, '', 'width='+width_+',height='+height_+',resizable=0,scrollbars=0,menubar=no,top='+y+',left='+x+',dependent=yes');
}

function emoty(text) {
	var txtarea = document.form1.komentarz;
	text = ' ' + text + ' ';
	if (txtarea.createTextRange && txtarea.caretPos) {
		var caretPos = txtarea.caretPos;
		caretPos.text = caretPos.text.charAt(caretPos.text.length - 1) == ' ' ? caretPos.text + text + ' ' : caretPos.text + text;
		txtarea.focus();
	} else {
		txtarea.value  += text;
		txtarea.focus();
	}
}