function startUp() {
    document.getElementById("key").onfocus=function() { this.value=""; }
    document.getElementById("key").onmouseover=function() { this.value=""; this.focus(); }
}

if (window.attachEvent) window.attachEvent("onload", startUp); else window.addEventListener("load", startUp, false);

