// JavaScript Document			
function changeColorBox(formelement) {
	if ((x=MM_findObj("colorselectorbox"))!=null) {
		thecolor = formelement.options[formelement.selectedIndex].value;
		if (thecolor == "aspen") {
			x.bgColor = "#FFFFFF";
		} else if (thecolor == "bone") {
			x.bgColor = "#E6E6D7";
		} else if (thecolor == "clay") {
			x.bgColor = "#B5B89C";
		} else if (thecolor == "countrybeige") {
			x.bgColor = "#DCD4AE";
		} else if (thecolor == "cypress") {
			x.bgColor = "#B1C7A3";
		} else if (thecolor == "driftwood") {
			x.bgColor = "#C0CACC";
		} else if (thecolor == "greystone") {
			x.bgColor = "#8C958C";
		} else if (thecolor == "harborblue") {
			x.bgColor = "#C0D7D9";
		} else if (thecolor == "ivory") {
			x.bgColor = "#F5EED1";
		} else if (thecolor == "mocha") {
			x.bgColor = "#DECFC0";
		} else if (thecolor == "pearl") {
			x.bgColor = "#F0F5E1";
		} else if (thecolor == "rye") {
			x.bgColor = "#CAC5A6";
		} else if (thecolor == "sandpebble") {
			x.bgColor = "#EEDEDE";
		} else if (thecolor == "wheat") {
			x.bgColor = "#FFFDD4";
		} else if (thecolor == "musketbrown") {
			x.bgColor = "#694907";
		}
		
	}
}