// JavaScript Document
function TextEnabled(txtBox, Box, ValueCheck)
{
   if (Box.value == ValueCheck)
   {
      txtBox.disabled = false;
	  txtBox.value = "";
	  txtBox.focus();
   }
   else
   {
      txtBox.value = "- No Other -";
      txtBox.disabled = true;
   }
}
function checkOther(txtBox)
{
	if (txtBox.disabled == false)
	{
		if (txtBox.value == "")
		{
			alert("Please specify how did you hear about the program");
			txtBox.focus();
			return false;
		}
		else
		{
			return true;
		}
	}
	else
	{
		return true;
	}
}
function clrAll(txtBox)
{
	txtBox.disabled = true;
}