function getAnswer(intAnswerID) 
{
	var txtWin = document.getElementById("txtAnswer");
	var strAnswer = "";
	switch( Number(intAnswerID) )
	{
		case 1:
		{
			//Investment casting
			strAnswer += "Tooling and fixture design\n\n";
			strAnswer += "Casting modeling and detailing\n\n";
			strAnswer += "New process development\n\n";
			strAnswer += "Shrink and prototyping modifications\n\n";
			txtWin.value = strAnswer;
			break;
		}
		case 2:
		{
			//Consumer products
			strAnswer += "Desktop audio\n\n";
			strAnswer += "Cellular headsets\n\n";
			strAnswer += "Home security enclosures\n\n";
			strAnswer += "Hobby knives\n\n";
			strAnswer += "Electric pencil sharpeners\n\n";
			txtWin.value = strAnswer;
			break;
		}
		case 3:
		{
			//Electronic Test Equipment
			strAnswer += "Customized fixturing\n\n";
			strAnswer += "Test accessories\n\n";
			strAnswer += "Special requirement project development\n\n";
			txtWin.value = strAnswer;
			break;
		}
		case 4:
		{
			//Industrial products
			strAnswer += "Wear components for excavation/mining\n\n";
			strAnswer += "Engine components and castings\n\n";
			strAnswer += "Manipulators and material handling\n\n";
			strAnswer += "Shipping container security systems\n\n";
			txtWin.value = strAnswer;
			break;
		}
		case 5:
		{
			//Tooling and Fixturing
			strAnswer += "Inspection, assembly, and machining fixtures\n\n";
			strAnswer += "Custom application fixtures, jigs, and machines\n\n";
			strAnswer += "Accessories and material handling equipment\n\n";
			txtWin.value = strAnswer;
			break;
		}
		case 6:
		{
			//CAD Services
			strAnswer += "Data migration, conversion, and clean-up\n\n";
			strAnswer += "Design tool development\n\n";
			strAnswer += "2-D to 3-D transition\n\n";
			strAnswer += "Modeling, drafting, documentation for desiging\n\n";
			txtWin.value = strAnswer;
			break;
		}
		case 7:
		{
			//Product Development
			strAnswer += "From concept sketches to working model\n\n";
			strAnswer += "Designed for manufacturing, assembly, the real world\n\n";
			strAnswer += "Sourcing for production\n\n";
			txtWin.value = strAnswer;
			break;
		}
		case 8:
		{
			//Reverse Engineering
			strAnswer += "CMM inspection to solid CAD model\n\n";
			strAnswer += "Refinement of competitor product\n\n";
			strAnswer += "Model and documentation from existing product\n\n";
			txtWin.value = strAnswer;
			break;
		}
		case 9:
		{
			//Aircraft assembly tooling
			strAnswer += "Design and drafting of custom assembly jigs for fusealage cabin sub assemblies.\n\n";
			strAnswer += "Drafting assistance for already designed tools\n";
			txtWin.value = strAnswer;
			break;
		}
		case 10:
		{
			//Custom Motor Coach Manufacturer
			strAnswer += "Onsite training in Unigraphics for new users\n\n";
			strAnswer += "Custom photo renders of coach chassis\n\n";
			strAnswer += "Custom automated design tool development\n";
			txtWin.value = strAnswer;
			break;
		}
	}
}
