
' Changes the background color of a given text field back to white when
' it receives focus.

function changeColor()
 execute("document.all." & window.event.srcElement.name & ".style.backgroundcolor=""white""")
end function
