/*****************************************************************************************
 * DESC:    Jquery code to limit the textarea fields to the Milestones Form
 * DATE:    12/2/2008
 * BY:      Consolidated Marketing Services 
 *          Ed Orsini 
 ****************************************************************************************/

function MaxLength(input, limit, info) 
{ 
        var length = input.value.length; 
        if(length > limit) 
        { 
                $('#' + info).html('You cannot write more than '+limit+' characters!'); 
                input.value = input.value.substr(0,limit); 
        } 
        else $('#' + info).html('You have '+ (limit - length) +' characters left.'); 



} 

