function change_values(obj) {
 if (obj.value == obj.defaultValue)
  obj.value = "";
 else if (obj.value == "")
  obj.value = obj.defaultValue;
}

function otworzokno(numer,wys,szer,nazwa,nazwa2) {
	okno=window.open("","",'toolbar=no, menubar=no, personalbar=no, status=no, resizable=no,height='+wys+',width='+szer+',left=100,top=100');
	okno.document.write("<html><head><META HTTP-EQUIV='Content-type' CONTENT='text/html; charset=iso-8859-2'><link rel='stylesheet' href='_c/style1.css' type='text/css'><title>" + nazwa2 + "</title></HEAD><body style='background:#fff;' ><center><table border=0 cellpadding=0 cellspacing=5 width=100% height=100%><tr><td valign=middle align=center>");
	okno.document.write("<a href='javascript:window.close()'><img src=pliki/" + numer + " border=0></a><br><span style='font-size:11px; font-family: Verdana;'>" + nazwa + "</span></td></tr></table></center></body></html>");
	}

