var util = new StringUtil();

var performics_url = window.location.href;
var performics_params = util.parseQuery(window.location.href);
var performics_pfxid = performics_params['pfxid'];
var performics_duration = 90;

function getPfxCookieDomain() {
  if (document.domain.lastIndexOf("abebooks.co.uk") != -1) return "abebooks.co.uk";
  if (document.domain.lastIndexOf("abebooks.com") != -1) return "abebooks.com";
  if (document.domain.lastIndexOf("abebooks.fr") != -1) return "abebooks.fr";
  if (document.domain.lastIndexOf("abebooks.de") != -1) return "abebooks.de";
  if (document.domain.lastIndexOf("abebooks.it") != -1) return "abebooks.it";
  if (document.domain.lastIndexOf("iberlibro.com") != -1) return "iberlibro.com";
}

if (typeof(performics_pfxid) != 'undefined') {
  var baker = new AbeCookie();
  baker.bake('abe-pfx', performics_pfxid, performics_duration, '/', getPfxCookieDomain());
}


