$(document).ready(function() { 
  tsmaxlength('edit-mail', 49);
  tsmaxlength('edit-organization-email', 49);
  tsmaxlength('organization_name', 50);
  tsmaxlength('street_address-3', 50);
  tsmaxlength('city-3', 30);
  tsmaxlength('postal_code-3',10);
  tsmaxlength('custom_12', 17);
 });
function tsmaxlength(id,len)
{
 if (document.getElementById(id))
 {
   document.getElementById(id).setAttribute('maxLength', len);
 }
}

