<!--

var prodDesc1 = "MP-Gold, Natural Herbal HRT, 1 Month";
var prodCode1 = "MPGOLD1";
var prodPrice1 = "29.60";

var prodDesc2 = "MP-Gold, Natural Herbal HRT, 2 Months, Free Postage";
var prodCode2 = "MPGOLD2";
var prodPrice2 = "49.90";

var prodDesc3 = "MP-Gold, Natural Herbal HRT, 3 Months plus 1 Free Month";
var prodCode3 = "MPGOLD3";
var prodPrice3 = "74.85";

var searchString = "";
var my_id_is = "";
arrival();

function arrival()
{
//alert("Search string: " + unescape(location.search.substring(1,location.search.length)));

  // If no search string, set so identifies shop as hw
  if (location.search.length == 0)
  {
    my_id_is = "erbz";
    searchString = "erbz";
  }
  else // There is a search string
  {
    // Extract relevant parts of search string
    searchString = unescape(location.search.substring(1,location.search.length));
    if (searchString.match(/^([a-zA-Z0-9]+)$/) != null)
    {
      // Search String is JUST the visitor source Id
      my_id_is = searchString;
    }
    else // Unexpected search string
    {
      my_id_is = "whoami";
      searchstring = "whoami";
    }
  }
}

function departure(url)
{
  // alert("in departure - my_id_is set to " + my_id_is);
  location.href = url + "?" + escape(searchString); // Pass whole search string
}

function addToBasket(desc,code,price)
{
  var resume = window.location.href;
  
  window.location='http://www.hwize.com/cgi-bin/hllc-cart.cgi?actiontype=add&amp;quantity=1&amp;productdesc='+desc+'&amp;productid='+code+'&amp;hwid='+my_id_is+'&amp;productprice='+price+'&amp;basketReturn='+resume;
}

function viewBasket()
{
  var resume = window.location.href;
  
  window.location='http://www.hwize.com/cgi-bin/hllc-cart.cgi?actiontype=view&amp;basketReturn='+resume;
}

//-->

