//µÃµ½id function $(id) { if (document.getElementById != null) { return document.getElementById(id); } else if (document.all != null) { return document.all[id]; } else { return null; } } function openModalDialog(strurl,width,height) { // 2.0 window.showModalDialog(strurl,window,"help: No; resizable: No; status: No;scrollbars:No;center: Yes;dialogWidth:" + width + "px;dialogHeight:" + height + "px;"); } function selAll(selitem) { var obj=self.document.all.item(selitem); if (obj) { if (obj.checked != "undefined") obj.checked = !obj.checked; for(var i=0;i