/***************************************
*  ILMARI NET SOLUTIONS                *
*                                      *
*  (c) Damex Oy 2001-2004.             *
*                                      *
*  Css / Arto Aaltonen                 *
*                                      *
***************************************/

function openwindow(w, h) {
  var nw = window.open("","liite", '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, '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();
}
