
  function openWin(file,cid,pid,pass) {
    var newWin;
    if (top.window.newWin) {
      newWin = top.window.newWin;
    } else {
      newWin = top.window.open(file+'?cid='+cid+'&pid='+pid+'&pass='+pass,'flashWin','width=750,height=500,top='+(screen.availHeight-600)/2+',left='+(screen.availWidth-700)/2+',resizable=1');
    }
    newWin.focus();
  }

  function confirmDel(question,url) {
    if (confirm(question) == true) {
      top.window.location.href = url;
    }
  }
