<!--

function addToBasket(desc,code,price,ship,units)
{
  var resume = window.location.href;
  
  window.location='http://www.hwize.com/cgi-bin/tyh2-cart.cgi?actiontype=add&amp;quantity=1&amp;productdesc='+desc+'&amp;productid='+code+'&amp;productprice='+price+'&amp;productship='+ship+'&amp;productunits='+units+'&amp;basketReturn='+resume;
}

function viewBasket()
{
  var resume = window.location.href;
  
  window.location='http://www.hwize.com/cgi-bin/tyh2-cart.cgi?actiontype=view&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;
}

//-->
