This is a pretty nice javascript that would do what you want.
You hust have to modify it for your purpose
<td><input name="Field1" value="" type="text" onKeyUp="javascript:return mask(this.value,this,'3,7,11,15',',');" onBlur="javascript:return mask(this.value,this,'3,7,11,15',',');" style="font-family:verdana;font-size:10pt;width:110px;" maxlength="19"></td>
I'd would also add a
mask="999,999,999,999" and a
ValidationExpression="^\d{3},\d{3},\d{3},\d{3}$"
I think it is a nice piece of javascript worth checking out. It made me smile.
Marty