﻿// Select text on click/ tab
function selectAllText(textbox) {
    textbox.focus();
    textbox.select();
}

