function PopupEbookWindow(v_href,w,h)
{
  var v_name, v_value, win;
  v_name  = "";
  vx      = (screen.width / 2) - ( w / 2 );
  vy      = (screen.height / 2) - ( h / 2);
  vx1     = screen.width - vx;
  vy1     = screen.height - vy;
  v_value = "width=" + w + ",height=" + h + ",left=" + vx + ",top=" + vy + ",resizable=yes,scrollbars=yes, statusbar=yes,locationbar=no,menubar=yes,toolbar=yes";
  win=window.open(v_href,v_name,v_value);
  win.focus();
}
function PopupONNWindow(v_href,w,h)
{
  var v_name, v_value, win;
  v_name  = "";
  vx      = (screen.width / 2) - ( w / 2 );
  vy      = (screen.height / 2) - ( h / 2);
  vx1     = screen.width - vx;
  vy1     = screen.height - vy;
  v_value = "width=" + w + ",height=" + h + ",left=" + vx + ",top=" + vy + ",resizable=yes,scrollbars=yes, statusbar=yes,locationbar=no,menubar=yes,toolbar=yes";
  win=window.open(v_href,v_name,v_value);
  win.focus();
}
function PopupEbookWindowNamed(v_name,v_href,w,h)
{
  var v_name, v_value, win;
  vx      = (screen.width / 2) - ( w / 2 );
  vy      = (screen.height / 2) - ( h / 2);
  vx1     = screen.width - vx;
  vy1     = screen.height - vy;
  v_value = "width=" + w + ",height=" + h + ",left=" + vx + ",top=" + vy + ",resizable=yes,scrollbars=yes, statusbar=yes,locationbar=no,menubar=yes,toolbar=yes";
  win=window.open(v_href,v_name,v_value);
  win.focus();
}

