> Worked a treat!
Not really. Didn't test it before posting, and as I see now,
there's a mistake:
>> function clrTxt(oElem, oEvent) {
>> if (
[quoted text clipped - 4 lines]
>> && oEvent.type
>> ) {
should, of course, be replaced with:
function clrTxt(oElem, oEvent) {
if (
oElem
&& typeof oElem.value != "undefined"
&& oElem.defaultValue
&& oEvent
&& oEvent.type
) {
ciao, dhgm