// JavaScript Document

function showAbstractColors()
{
	//	If pages is designated as Data Collection color pages, then show
	//	green background
	
	if (document.title == "Market Research: Data Collection Services Overview")
	{
		document.getElementById("abstract").className = "abstractGreen";
	}
	else if (document.title == "Market Research: Marketing Support Services Overview")
	{
		document.getElementById("abstract").className = "abstractBlue";
	}
	else if (document.title == "Market Research: Descriptive Digital Data™ Overview")
	{
		document.getElementById("abstract").className = "abstractOrange";
	}
	else if (document.title == "Market Research: Consumer Panel Overview")
	{
		document.getElementById("abstract").className = "abstractYellow";
	}
//	else if (document.title == "Market Research: Data Collection Profile")
//	{
//		document.getElementById("content").style.backgroundColor = "#DEEBCD";
//	}
	else if (document.title == "Market Research: Marketing Support Services Profile")
	{
		document.getElementById("content").style.backgroundColor = "#CDE1E9";
	}
	else if (document.title == "Market Research: Descriptive Digital Data™ Profile")
	{
		document.getElementById("content").style.backgroundColor = "#F0D5C6";
	}
	else if (document.title == "Market Research: Consumer Panel Profile")
	{
		document.getElementById("content").style.backgroundColor = "#F2EFCC";
	}
}
