function CountC1(form, field) {
if (field ==1) {
Ctrl = form.CompanyOverview;
y = 500+1; }
else {
Ctrl = form.longdescription;
y=256; }
x = Ctrl.value.length;
if (x < y)
SendMsg (Ctrl, "Number of characters is: " + x);        else
SendMsg (Ctrl, "**WARNING!** Description is Too Long. Number of characters is: " + x);}
function SendMsg (Ctrl, PromptStr) {    alert (PromptStr)
;
Ctrl.focus();   return;}
