<!--
// 'comp'はポップアップウィンドウの名前に利用するので
if (window.name == 'comp') {
  // ウィンドウ名が重複しないようにしておく.
  window.name = 'yjprop_popup_base';
}

function yjprop_popup_open(l)
{
  var yjprop_remote = window.open('', 'comp', 'width=990,height=550,scrollbars=1,resizable=yes');
  if (! yjprop_remote) {
    // とりあえず自分をそのページに飛ばす.
    location.href = l;
  } else {
    // openerはNN3-/IE4-のみ対応.
    if (! yjprop_remote.opener) {
      yjprop_remote.opener = self;
    }
    yjprop_remote.location.href = l;
    // IE4を除外.
    if (document.images && (document.documentElement || window.netscape || window.opera)) {
      // focus()はNN3-/IE5-?IE4はエラー? ポップアップしたウィンドウにフォーカス
      yjprop_remote.focus();
    }
  }
  return false;
}

function yjprop_popup_open_form(l, form)
{
  var yjprop_remote = window.open('', 'comp', 'width=990,height=550,scrollbars=1,resizable=yes');
  if (! yjprop_remote) {
    // とりあえず自分をそのページに飛ばす.
    location.href = l;
    form.submit();
  } else {
    // openerはNN3-/IE4-のみ対応.
    if (! yjprop_remote.opener) {
      yjprop_remote.opener = self;
    }
    yjprop_remote.location.href = l;
    form.submit();
    // IE4を除外.
    if (document.images && (document.documentElement || window.netscape || window.opera)) {
      // focus()はNN3-/IE5-?IE4はエラー? ポップアップしたウィンドウにフォーカス
      yjprop_remote.focus();
    }
  }
  return false;
}
// -->

