<!--	
	function price () {
		var colour = document.dleaflets.colour.value;
		var paper = 100;
		var weight = (document.dleaflets.weight.value/100) * paper;
		if (colour == "4/0") { priceround ((23 + (25 * weight)), 1) } else if (colour == "1/0") { priceround ((13 + (25 * weight)), 1) }
		if (colour == "4/0") { priceround ((33 + (50 * weight)), 2) } else if (colour == "1/0") { priceround ((18 + (50 * weight)), 2) }
		if (colour == "4/0") { priceround ((59 + (125 * weight)), 3) } else if (colour == "1/0") { priceround ((28 + (125 * weight)), 3) }
		if (colour == "4/0") { priceround ((88 + (250 * weight)), 4) } else if (colour == "1/0") { priceround ((38 + (250 * weight)), 4) }
		if (colour == "4/0") { priceround ((153 + (500 * weight)), 5) } else if (colour == "1/0") { priceround ((58 + (500 * weight)), 5) }
		if (colour == "4/0") { priceround ((206 + (750 * weight)), 6) } else if (colour == "1/0") { priceround ((81 + (750 * weight)), 6) }
		if (colour == "4/0") { priceround ((251 + (1000 * weight)), 7) } else if (colour == "1/0") { priceround ((101 + (1000 * weight)), 7) }
	}
//-->

<!--
	function priceround (x, y) {
		var z = Math.round(x*100)/10;
		if (Math.round(x) == x) {
		document.getElementById("price" + y).innerHTML = "£" + x + ".00"
		} else if (Math.round(z) == z) {
		document.getElementById("price" + y).innerHTML = "£" + Math.round(x*10)/10 + "0"
		} else {
		document.getElementById("price" + y).innerHTML = "£" + Math.round(x*100)/100
		}
	}
//-->