function getComment(theComment,theNimi) {

	// Mozilla version

	if (window.XMLHttpRequest) {

		xhr = new XMLHttpRequest();

	}

	// IE version

	else if (window.ActiveXObject) {

		xhr = new ActiveXObject("Microsoft.XMLHTTP");

	}

	theComment=encodeURIComponent(escape(theComment));
	theNimi=encodeURIComponent(escape(theNimi));

	xhr.open("POST","getComments.php?nimi=" + theNimi);

	xhr.setRequestHeader(

		'Content-Type',

		'application/x-www-form-urlencoded; charset=UTF-8');

	xhr.send(unescape(theComment));

	xhr.onreadystatechange=function() {

		if (xhr.readyState==4) {

			commentResult = xhr.responseText;

			//alert(shiftResult);

			var theText = document.getElementById("commentDiv");
			var theCommentBox = document.getElementById("commentBox");
			theText.innerHTML = unescape(commentResult);
			theCommentBox.value = "";

		}

	}

	return false;

}