用null来作为setInterval的参数?这里的参数类型必须是function pointer 或者 string that indicates the code
-----------------------
function closesubnav(event){
var timer=null;
timer = window.setInterval("return true;", time);
if(timer){
  
if ((event.clientY <26)||(event.clientY > 85)){
    for (var i=1; i<= numofitems; i++){
      var shutdiv =eval('menuitem'+i+'.thediv');
      shutdiv.style.visibility='hidden';
    }
  }
}
}