codice:
         function ciao(event)
        {
            if (event.type == "focus")
            {
                alert("focus");
            }
            if (event.type == "blur")
            {
                alert("blur");
            }
        }