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