function checkNev(i) {
	if (i.value=='felhasználónév') i.value='';
}

function checkPwd(i) {
	if (i.value=='jelszó') i.value='';
}

function checkKereses(i) {
	if (i.value=='keresés...') i.value='';
}

function textCount() {
  chars=document.getElementById("hozzaszolas_szoveg").value.length;
  document.getElementById("hozzaszolas_karakterszam").value=chars;
  if (chars>=1) {
	document.getElementById("hozzaszolas_gomb").disabled=false;
	document.getElementById("hozzaszolas_gomb").className='gomb_en';
  } else {
	document.getElementById("hozzaszolas_gomb").disabled=true;
	document.getElementById("hozzaszolas_gomb").className='gomb_ds';
  }
}
