function writeCookie(value)
{
  
  var firstCookie = value +"="+ value + "=;path=/;domain=www.toughtraveler.com;expires="+new Date((new Date()).getTime() + 5*3600000);
  document.cookie = firstCookie;
  document.cookie = "Remove" + value + "=Ignore=;path=/;domain=www.toughtraveler.com;expires="+new Date((new Date()).getTime() + 5*3600000);
  var ShoppingCart = window.open("https://www.toughtraveler.com/ShoppingCart.html");

}

