

function checkColor(color) {



	color = color.toLowerCase()



	var notice = document.getElementById('product-notice');

	var alertText = false;

	if(color.indexOf('acid yellow') > -1) {

		alertText = true;

		notice.innerHTML = "Notice: The color Acid Yellow requires a white background.";

	}

	if(color.indexOf('buttercup') > -1) {

		alertText = true;

		notice.innerHTML = "Notice: The color Buttercup works best on a white background.";

	}

	if(color.indexOf('crimson') > -1) {

		alertText = true;

		notice.innerHTML = 'Notice: The color Crimson requires our special <a href="http://www.ecospaints.net/store/paints-for-wood/basecoat/cat_38.html">basecoat</a> - please be sure to include this with your order';

	}

	if(color.indexOf('lime') > -1) {

		alertText = true;

		notice.innerHTML = "Notice: The color Lime requires a white background.";

	}

	if(color.indexOf('signal') > -1) {

		alertText = true;

		notice.innerHTML = 'Notice: The color Signal requires our special <a href="http://www.ecospaints.net/store/paints-for-wood/basecoat/cat_38.html">basecoat</a> - please be sure to include this with your order';

	}

	if(color.indexOf('tango') > -1) {

		alertText = true;

		notice.innerHTML = "Notice: The color Tango works requires a white background.";

	}

	if(color.indexOf('colour matched') > -1) {

		alertText = true;

		notice.innerHTML = 'Notice: Please enter your previously matched color codes in the text box during checkout.<br /> If this is the first time you have requested this color and it still needs to be matched, please remember to include the  <a href="/store/color-matching/color-matching-service/prod_112.html" title="View Color Matching Product">Color Matching Service </a> in your order.<br /> You can also email (colormatch@ecospaints.net) or telephone (864-595-3840) with details of your previously matched color, or for more information.';

	}

	if(!alertText) {

		notice.style.visibility = "hidden";

		notice.innerHTML = "";

	} else {

		notice.style.visibility = "visible";

	}

}
