  function colorTR(_id) {	
	var x = document.getElementById(_id);
	var i = 0;
	for(var a = 0; x.rows[a]; a++) {
		if(x.rows[a].className!="nocolor") {
			if((i%2) == 1) x.rows[a].className=x.rows[a].className+" even";
			i++;
		}
	}
  }

  function AddReply(id, txt) {
  	document.newcomment.valasz.value=id;
  	document.getElementById('reply_text').innerHTML = txt;
  	document.newcomment.szoveg.focus();
  }
