﻿function CompleteAboCode(textBox)
{
    var aboCode = textBox.value;
        
    while ( aboCode.length < 10 )
    {
        aboCode = "0" + aboCode;
    }

    textBox.value = aboCode;
}
