function openwindow(w, h) {
  var nw = window.open("","liite", 'status=0,toolbar=0,location=0,scrollbars=1,width=' + w + ', height=' + h + ', resizable=1');
  nw.focus();
  return true;
}

function newWindow(n, w, h) {
  var nw = window.open("", n, 'status=0,toolbar=0,location=0,scrollbars=1,width=' + w + ', height=' + h + ', resizable=1');
  nw.focus();
  return true;
}

function viewCart() {
  // var nw = window.opener.location = '../www/cart.php';
  // window.opener.focus();
  var nw = window.open("../www/cart.php", 'cart');
  nw.focus();
  return true;

  // window.close();
}

function initPopup() {
  window.focus();
}
