function WindowOpen(inName,inURL,inWidth,inHeight)
{
  var ret = window.open(inURL,inName,'width=' + inWidth + ',height=' + inHeight + ',location=yes,resizable=yes,toolbar=no,menubar=no,scrollbars=no,status=0');
  if (ret != null) {
    if (ret.opener == null) {
    ret.opener = self;
  }
}
  // 前面へ表示
  ret.focus();
}
function ondemandWindowOpen(inName,inURL,inWidth,inHeight)
{
   window.parent.WindowOpen(inName,inURL,inWidth,inHeight);
}


function WindowOpen2(inName,inURL,inWidth,inHeight)
{
  var ret = window.open(inURL,inName,'width=' + inWidth + ',height=' + inHeight + ',location=yes,resizable=yes,toolbar=no,menubar=no,scrollbars=yes,status=0');
  if (ret != null) {
    if (ret.opener == null) {
    ret.opener = self;
  }
}
  // 前面へ表示
  ret.focus();
}
function messageWindowOpen(inName,inURL,inWidth,inHeight)
{
   window.parent.WindowOpen2(inName,inURL,inWidth,inHeight);
}