function wstaw(co) {
	document.getElementById('ksiega_tresc').value += " "+co;
}
function dlugosc(max) {
	if (document.getElementById('ksiega_tresc').value.length > max) {
		alert("Masz tylko 400 znaków do wykorzystania!");
		document.getElementById('ksiega_tresc').value = document.getElementById('ksiega_tresc').value.substring(0, max);
	}
	window.setTimeout("dlugosc(400)", 500);
}
function wycisz()
{
	document.cookie="wycisz=1; expires=; path=/";
}
function glos()
{
	var waznosc=new Date();
	waznosc.setTime(waznosc.getTime()-1000);
	document.cookie="wycisz=1;expires=" + waznosc.toGMTString() + ";path=/";
}
