function replyComment(id, bottom)
{
	if (bottom)
	{
	oAnch = document.getElementById('bottom'+id);
	}
	else
	{
	oAnch = document.getElementById('cmt'+id);
	}
	ocblk = document.getElementById('commentblock');
	olta = ocblk.getElementsByTagName("TEXTAREA");
	if (olta[0].value != '')
	{
		if (!confirm("Your comment will not be saved")) return;
	}
	document.getElementById('cmtparent').value = id;
	olta[0].value = '';
	oAnch.appendChild(ocblk);
	ocblk.style.position = 'relative';
	ocblk.style.visibility = 'visible';
	olta[0].focus();
}
