function forwardProduct (productTitle, cartPath) {

  var CARTNAME = '_uhw_cart_jp'
  var cookieExpiresDay = 0.02;
  var cookiePath = '/jp/';
//  var cartPath = '/jp/contact-us/contact-form/';

  var cart = $.cookie(CARTNAME);
  if (cart) {
    $.cookie(CARTNAME, productTitle+"|"+cart, { path: cookiePath, expires: cookieExpiresDay });
  } else {
    $.cookie(CARTNAME, productTitle, { path: cookiePath, expires: cookieExpiresDay });
  }

  location.href = cartPath;
}
