this.dedi_pop.onmouseout = function(e) {
e = e||window.event;
if (document.all && !document.getElementById('dedi_pop').contains(e.toElement)) delayhide = setTimeout("this.hide('dedi_pop')", 200);
else if (!document.all && e.currentTarget != e.relatedTarget && !_contains(e.currentTarget, e.relatedTarget)) delayhide = setTimeout("this.hide('dedi_pop')", 200);
var e = e.target || e.srcElement;
if (e.className == 'menurow') e.id = '';
else {
while (e.id != 'dedi_pop') {
e = document.getElementById ? e.parentNode : e.parentElement;
if (e.className == 'menurow') e.id = '';
}
}
}
function _contains(a, b) {
while (b && b.parentNode && b.parentNode != "undefined") if ((b = b.parentNode) == a) return true;
return false;
} |