<!--
function checkError() {
	i_GV_errCount = 0;
	s_GV_errMsg = "Error(s) encountered.";

	oL_cE_item1 = new getObj("item1");
	oL_cE_item1.style.color = "#333333";
	oL_cE_item2 = new getObj("item2");
	oL_cE_item2.style.color = "#333333";
	oL_cE_item3 = new getObj("item3");
	oL_cE_item3.style.color = "#333333";
	oL_cE_item4 = new getObj("item4");
	oL_cE_item4.style.color = "#333333";
	oL_cE_item5 = new getObj("item5");
	oL_cE_item5.style.color = "#333333";
	oL_cE_item6 = new getObj("item6");
	oL_cE_item6.style.color = "#333333";
	oL_cE_item7 = new getObj("item7");
	oL_cE_item7.style.color = "#333333";
	oL_cE_item8 = new getObj("item8");
	oL_cE_item8.style.color = "#333333";

	if (isSelIdx("use_sissons")) {
		oL_cE_item1.style.color = "#FF4040";
		i_GV_errCount++;
	}

	if (isSelIdx("profession")) {
		oL_cE_item2.style.color = "#FF4040";
		i_GV_errCount++;
	}

	if (isSelRadioBtn("gender")) {
		oL_cE_item8.style.color = "#FF4040";
		i_GV_errCount++;
	}

	if (isSelIdx("purchase_frequency")) {
		oL_cE_item3.style.color = "#FF4040";
		i_GV_errCount++;
	}

	if (isSelIdx("compare")) {
		oL_cE_item4.style.color = "#FF4040";
		i_GV_errCount++;
	}

	if (isSelIdx("solutions")) {
		oL_cE_item5.style.color = "#FF4040";
		i_GV_errCount++;
	}

	if (isSelIdx("income")) {
		oL_cE_item6.style.color = "#FF4040";
		i_GV_errCount++;
	}

	if (!isEmail(document.f.email.value)) {
		oL_cE_item7.style.color = "#FF4040";
		i_GV_errCount++;
	}

	if (i_GV_errCount > 0) {
		alert(s_GV_errMsg);
		return false;
	}
}
// -->