	function setVIPAmount(shipping,no_shipping,amount,vip_price,rrp_price,freight) {
		if (removeSpaces(document.vip.vipcode.value)=="1800225747") {
			amount.value=vip_price;
		} else {		
			amount.value=rrp_price;
		}
		if (document.vip.pickup.checked) {
			shipping.value=0;
			no_shipping.value="0";
		} else {
			shipping.value=freight;
			no_shipping.value="1";
		}
	}

function removeSpaces(string) {
	var tstring = "";
	string = '' + string;
	splitstring = string.split(" ");
	for(i = 0; i < splitstring.length; i++)
	tstring += splitstring[i];
	return tstring;
}
	function enterCode() {
		if (removeSpaces(document.vip.vipcode.value)=="1800225747") {
			document.getElementById("vipDiv").className="hide";
			document.getElementById("activated").className="show";
		} else {
			window.alert("Incorrect VIP code");
		}
		return false;
	}
