function wa_new_post(m1,m2) { document.location = "mail"+"to:"+m1+"@"+m2; }

function wa_addtobasket(product_id, site_id) {
  var a;
  a = wa_product_list.elements["wa_product_quantity"+product_id].value;

  if (a == '') {
    a = 1;
    wa_product_list.elements["wa_product_quantity"+product_id].value = 1;
  }
  
  document.location=appdir+'shop/basket.asp?wa_addproduct_id='+product_id+'&wa_product_quantity='+a+'&wa_site_id='+site_id;
  return false;
}

var wa_active_input_id;

function wa_active_input(id) {
  wa_active_input_id = id;
}

function wa_addonchange(id, site_id) {

  var a;
  a = wa_product_list.elements["wa_product_quantity"+id].value;
  if (a=="") a = "1";

  var c=0;
  c=confirm('Lisan '+a+' toodet?')
  if (c) {
    wa_addtobasket(id, site_id);  
  } else {
    wa_product_list.elements["wa_product_quantity"+id].value = '';
  }
}



