<!--

var my_id_is = "";
arrival();

function arrival()
{
  var searchString = "";

  searchString = unescape(location.search.substring(1,location.search.length));
  if (searchString.match(/^([_a-zA-Z0-9]+)$/) != null)
  {
    // Search String is JUST the shop owner's Id
    my_id_is = searchString;
    // alert("in arrival - my_id_is: " + my_id_is);
  }
  else // Unexpected search string
  {
    my_id_is = "tyh";
  }
}

function idemo(directory,filename)
{
  location.href = directory + "/" + filename + ".html?" + my_id_is;
}

function idemoup1(directory,filename)
{
  location.href = "../" + directory + "/" + filename + ".html?" + my_id_is;
}

function addToBasket(desc,code,price,ship,units)
{
  var resume = window.location.href;
  
  // There were problems calling shopping basket when the basketReturn string contained 
  // a QuestionMark, ie when the value within the query string itself contained
  // a query string. Here we remove it, as the shop Id is already passed to the shopping
  // basket in the "shop" parameter.
  var indexQueryString = resume.indexOf("?");
  if (indexQueryString > -1)
  {
    resume = resume.substring(0,indexQueryString);
  }
  
//  alert(resume);
  
  window.location='http://www.treasureyourhealth.com/cgi-bin/tyhcouk-cart.cgi?actiontype=add&amp;quantity=1&amp;productdesc='+desc+'&amp;productid='+code+'&amp;productprice='+price+'&amp;productship='+ship+'&amp;productunits='+units+'&amp;shop='+my_id_is+'&amp;basketReturn='+resume;
}

function viewBasket()
{
  var resume = window.location.href;
  
  // There were problems calling shopping basket when the basketReturn string contained 
  // a QuestionMark, ie when the value within the query string itself contained
  // a query string. Here we remove it, as the shop Id is already passed to the shopping
  // basket in the "shop" parameter.
  var indexQueryString = resume.indexOf("?");
  if (indexQueryString > -1)
  {
    resume = resume.substring(0,indexQueryString);
  }

  window.location='http://www.treasureyourhealth.com/cgi-bin/tyhcouk-cart.cgi?actiontype=view&amp;shop='+my_id_is+'&amp;basketReturn='+resume;;
}

var prodPrice =0;
var prodDesc = "";
var prodPrice = "";
var prodShip = "";
var prodUnits = 0;

function verifyOrder()
{
  var selectValue = 0;
  
  if (document.buyform.prodCount != null) 
  {
    selectValue = Math.abs(document.buyform.prodCount.value);
  }
  
  if (selectValue == 0)
  {
    alert("I'm sorry, there appears to be a problem. Please call our Helpline - 0115 840 7521 and we will take your order by phone.");
    return false;
  }
  else
  {
    prodPrice = product_price[selectValue];
    prodCode = "" + product_code + selectValue;
    prodDesc = product_description[selectValue];
    prodShip = product_ship_method;
    prodUnits = product_ship_units[selectValue];
  }
 
  return true;
}

//-->

