// JavaScript Document
//checks the character length for optional field OrganizationNeed
function checkLength (txtControl, txtCount, intMaxLength) 
{
  if (txtControl.value.length > intMaxLength)
	txtControl.value = txtControl.value.substring(0, (intMaxLength-1));
  else
	txtCount.value = intMaxLength - txtControl.value.length;
}

//<textarea name="OrganizationNeed" cols="40" rows="6" id="OrganizationNeed" onKeyDown="checkLength(this,document.CustomerLead.txtCount, 255);" onKeyUp="checkLength(this,document.CustomerLead.txtCount, 255);" tabindex="6"></textarea> 
