﻿<!--
function validateAddComment(textboxID)
{
  if (trim(textboxID.value).length == 0)
  {
		textboxID.value = "";
	  alert('Please enter your comment.');
	  return false;
  }
}
//-->

