﻿// JScript File

//limit number of characters and trim off excess

function CountLeft(field,count,max)
{
    if(field.value.length > max)
        field.value = field.value.substring(0,max);
    else
        count.value = max - field.value.length;
}

function callCount()
{
    alert('Registerd');
}
