fires when an input gets focus
| name | string | item name | 
| value | string | item value (for radios only) | 
//for radios and checkboxes
myForm.attachEvent("onFocus", function(name, value){
    //your code here
});
 
//for other controls
myForm.attachEvent("onFocus", function(name){
    //your code here
});