/***************************************
*  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();
}

function validator()
{
  if (document.form1.Nimi.value == "" || document.form1.Nimi.value == " ")
  {
    alert ("Nimi on pakollinen tieto, ole hyvä ja anna nimesi.");
    return false;
  }
  else if (document.form1.email.value == "" || document.form1.email.value == " ")
  {
    alert ("Sähköpostiosoite on pakollinen tieto, ole hyvä ja anna sähköpostiosoitteesi.");
    return false;
  }
  else
  {
    return true;
  }
}
