var d = document;
var msg;

function confirmChoice() {
	msgQuestion = "YES - We can match any colour and create custom colours \n All paint and pricing information is availble on the site \n \n If you query is of any other nature please click \"OK\" \n otherwise please click \"CANCEL\" to proceed to the order form";
	userResponse = confirm(msgQuestion);
	if (userResponse == 1) {
		location = "/contact.htm";
	} else {
		location = "/paints.htm";
	}
}