﻿// JScript File
//Selects the text in a textBox.
function selectText(obj)
{
    obj.select();
}
