// suitcase functions
/*function updateQuantity (i, e, p) {
	var q = $(i).getValue();
	if (Number(q) && !q.match(/^\d+\.\d+$/)) {
		var np = "";
		np = q*p;
		np = np.toString();
		if (np.match(/^\d+\.\d+$/)) {
			np = Math.round(np*100)/100
		} else {
			np = np+".00";
		}
		$(e).innerHTML = "&pound;"+np;
	} else if (q.match(/^\d+\.\d+$/)) {
		alert("Please enter a full number (not a decimal) for the quantity");
		
	}

}*/

/*function togglePrice (p, e, op) {
	var np = "";
	np = (p+op);
	np = np.toString();
	if (np.match(/^\d+\.\d+$/)) {
		np = Math.round(np*100)/100
	} else {
		np = np+".00";
	}
	$(e).innerHTML = "&pound;"+np;
	return false;
}*/

/*function setDelegateQuantity (v) {
	var d = $(v).getValue();
	n = d/2
	$('quantity').value = Math.round(n);
	
}*/