function czysc(x)
{
  if(document.getElementById(x).value==document.getElementById(x).defaultValue)document.getElementById(x).value='';
  else if(document.getElementById(x).value=='') document.getElementById(x).value=document.getElementById(x).defaultValue;
}

function flash(id, kolor, czas, kolor2, czas2)
{
	document.getElementById(id).style.backgroundColor = kolor;
	setTimeout('flash("' + id + '","' + kolor2 + '",' + czas2 + ',"' + kolor + '",' + czas + ')', czas);
}

