﻿function ToggleMe(oInput, strID) {
    if (oInput.value == strID) { oInput.value = ''; } else if (oInput.value == '') { oInput.value = strID; }
}
