/********************************************************
 *
 *  ポップアップウィンドウ・オブジェクト
 *
 *  Copyright (c) 2008, 2009 AOK. All Rights Reserved.
 *
 ********************************************************/
var popupWindow = function() {
  this.pWnd = null;
  this.target = "_popup_window";
  this.features = {
    channelmode:0, directories:0, fullscreen:0, location:0,
    menubar:0, resizable:0, scrollbars:0, status:0, toolbar:0
  };

  this.size = function(w, h) {
    this.features['width'] = w;
    this.features['height'] = h;
  };

  this.position = function(x, y) {
    this.features['left'] = x;
    this.features['top'] = y;
  };

  this.open = function(url) {
    var list = new Array();
    for (var i in this.features) {
      list.push(i + '=' + this.features[i]);
    }
    this.pWnd = open(url, this.target, list.join(','));
    if (this.pWnd) {
      this.pWnd.focus();
      return true;
    }
    return false;
  };

  this.close = function() {
    if (this.pWnd && !this.pWnd.closed)
      this.pWnd.close();
  };
};
