function freeShippingMsg(total)
{
	var THRESH = 25000;   /* Threshold of 250 pounds */
	var total=getCartItem(1)+"";
	var result = "";

	total=total.replace("&#163;","");
	total=total.replace("&#44;","");
	total=(total.replace("&#46;",""));

	if (total < THRESH) {
		result += ("<p><b>Spend <i>£"+((THRESH - total)/100).toFixed(2)+"</i></b> more for <b>FREE UK SHIPPING</b>.</p>");
	} else {
		if (getObj('couponcode')){
			getObj('couponcode').value="";
			getObj('couponcode').disabled=true;
		}
		result += "<p>The total value of items in your basket is enough for <b>FREE UK SHIPPING</b>.</p>";
	}

	return result;
}

