function textBoxAtLeast(sID, iMin)
{    
    var sVal = document.getElementById(sID).value;
    //trims off start and end spaces
    sVal = sVal.replace(/^\s+|\s+$/g,"");
    if (sVal.length < iMin)
    {
        return false;
    }
    return true;
}

