function upperMe(ctl){ ctl.value = ctl.value.toUpperCase() }

function lowerMe(ctl){ ctl.value = ctl.value.toLowerCase() } 