<!--
	function price () {
		var colour = document.dleaflets.colour.value;
		var paper = 100;
		var weight = (document.dleaflets.weight.value/100) * paper;
		if (colour == "4/0") { priceround ((27 + (9 * weight)), 1) } else if (colour == "1/0") { priceround ((17 + (9 * weight)), 1) }
		if (colour == "4/0") { priceround ((37 + (17 * weight)), 2) } else if (colour == "1/0") { priceround ((22 + (17 * weight)), 2) }
		if (colour == "4/0") { priceround ((57 + (42 * weight)), 3) } else if (colour == "1/0") { priceround ((31 + (42 * weight)), 3) }
		if (colour == "4/0") { priceround ((67 + (84 * weight)), 4) } else if (colour == "1/0") { priceround ((43 + (84 * weight)), 4) }
		if (colour == "4/0") { priceround ((85 + (167 * weight)), 5) } else if (colour == "1/0") { priceround ((57 + (167 * weight)), 5) }
		if (colour == "4/0") { priceround ((102 + (250 * weight)), 6) } else if (colour == "1/0") { priceround ((70 + (250 * weight)), 6) }
		if (colour == "4/0") { priceround ((117 + (334 * weight)), 7) } else if (colour == "1/0") { priceround ((82 + (334 * 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
		}
	}
//-->