/* mc: added - change the price based on the length */
function changePrice(element, new_value) {
	var obj = document.getElementById(element);
	
	ind_pound = new_value.indexOf("£");
	new_value = new_value.slice(ind_pound);
	obj.firstChild.nodeValue = new_value;
}

function openLiftingProductsPage() {
	day = new Date();
	id = day.getTime();
	eval("page" + id + " = window.open('feedback_form.php', '" + id + "', 'toolbar=0,scrollbars=0,location=0,statusbar=0,menubar=0,resizable=0,width=377,height=500,left = 451.5,top = 262');");
}
