<!--	
	function price () {
		var colour = document.dleaflets.colour.value;
		var paper = 100;
		var weight = (document.dleaflets.weight.value/100) * paper;
		if (colour == "4/0" || colour == "1/1") { priceround ((23 + (3 * weight)), 1) } else if (colour == "4/1") { priceround ((28 + (3 * weight)), 1) } else if (colour == "4/4") { priceround ((33 + (3 * weight)), 1) } else if (colour == "1/0") { priceround ((18 + (3 * weight)), 1) }
		if (colour == "4/0" || colour == "1/1") { priceround ((28 + (5 * weight)), 2) } else if (colour == "4/1") { priceround ((33 + (5 * weight)), 2) } else if (colour == "4/4") { priceround ((38 + (5 * weight)), 2) } else if (colour == "1/0") { priceround ((23 + (5 * weight)), 2) }
		if (colour == "4/0" || colour == "1/1") { priceround ((43 + (13 * weight)), 3) } else if (colour == "4/1") { priceround ((48 + (13 * weight)), 3) } else if (colour == "4/4") { priceround ((53 + (13 * weight)), 3) } else if (colour == "1/0") { priceround ((38 + (13 * weight)), 3) }
		if (colour == "4/0" || colour == "1/1") { priceround ((58 + (25 * weight)), 4) } else if (colour == "4/1") { priceround ((63 + (25 * weight)), 4) } else if (colour == "4/4") { priceround ((68 + (25 * weight)), 4) } else if (colour == "1/0") { priceround ((48 + (25 * weight)), 4) }
		if (colour == "4/0" || colour == "1/1") { priceround ((81.5 + (50 * weight)), 5) } else if (colour == "4/1") { priceround ((86.5 + (50 * weight)), 5) } else if (colour == "4/4") { priceround ((91.5 + (50 * weight)), 5) } else if (colour == "1/0") { priceround ((66.5 + (50 * weight)), 5) }
		if (colour == "4/0" || colour == "1/1") { priceround ((94 + (75 * weight)), 6) } else if (colour == "4/1") { priceround ((114 + (75 * weight)), 6) } else if (colour == "4/4") { priceround ((124 + (75 * weight)), 6) } else if (colour == "1/0") { priceround ((76.5 + (75 * weight)), 6) }
		if (colour == "4/0" || colour == "1/1") { priceround ((110 + (100 * weight)), 7) } else if (colour == "4/1") { priceround ((145 + (100 * weight)), 7) } else if (colour == "4/4") { priceround ((160 + (100 * weight)), 7) } else if (colour == "1/0") { priceround ((90 + (100 * 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
		}
	}
//-->