//打开新窗口（无地址栏、无最大化、无状态栏、不可缩放大小）
function openWin(theURL,winName,features) {
  window.open(theURL,winName,features);
};

//删除确认
function isDel(theURL)
{
  if(confirm("你确定要删除吗？")) {
    MM_openBrWindow(theURL,'','width=100,height=100');
  }
};
