function activate() { el = event.srcElement; if (el.getAttribute("HIGHLIGHT") != null) { el.className = "active"; window.setTimeout("window.status='Done'",1); } else { if (el.tagName == 'IMG') { window.setTimeout("window.status='Done'",1); } } } function deactivate() { el = event.srcElement; if (el.getAttribute("HIGHLIGHT") != null) { el.className = "inactive"; window.clearTimeout(); } else { if (el.tagName == 'IMG') { window.clearTimeout(); } } } function StatusUpdate() { el = event.srcElement; if (el.getAttribute("HIGHLIGHT") != null) { window.status = 'Done'; return true; } } function StatusOnLoad() { alert("2ooo"); window.defaultStatus = 'Hello'; return true; } document.onmouseover = activate; document.onmouseout = deactivate; document.onclick = StatusUpdate; window.defaultStatus = 'Done';