

var myPassWin=null;
function changeMyPasswd()
{
  if(myPassWin == null) {
    myPassWin = new zWindow(
    {
      id: 'myPassWin',
      title:'ºñ¹Ð¹øÈ£º¯°æ',
      width:400,
      height:200,
      min:false,
      max:false,
      debug:false,
      askclose:false,
      modal:true,
      iconCls: 'wintitleicon',
      html : '',
      attachid:document.body,
      isdesktop:false,
      shadow : false
    });
  }

  var pageurl = "/_superga/common/passwd_form.php";
  myPassWin.showWindow();
  myPassWin.setContent(getFrameHTML(myPassWin, pageurl));

}

function logout()
{
  if(confirm("·Î±×¾Æ¿ô ÇÏ½Ã°Ú½À´Ï±î?")) {
    parent.location.href = "/_superga/common/logout.php";
  }
}


