function PostComment() {
	document.getElementById("AddComment").style.display = "block";
	//var t = setTimeOut("ExpandPanel()", 100);
	//clearTimeOut(t);
}

function ExpandPanel() {
	if (parseInt(document.getElementById('AddComment').style.height) <= 132) {
		document.getElementById('AddComment').style.height = ((parseInt(document.getElementById('AddComment').style.height) + 1) + 'px').toString();
	}
}

function EnableTextBox(el) {
	if (el.style.color !== "black") {
		el.style.color = "black";
		el.value = "";
	}
}