function checkPOC(othis){
	var result
	var oError

	result = true;
	checkit = 0;
	checkit2 = 0;

	for (i=0; i<document.forms["poc_form"].Automation.length; i++){
	 if (document.forms["poc_form"].Automation[i].checked){
	  checkit++;
	 }
	}
	
		for (j=0; j<document.forms["poc_form"].KApplications.length; j++){
	 if (document.forms["poc_form"].KApplications[j].checked){
	  checkit2++;
	 }
	}

	if(checkit <= 0 && result){
	 alert("Please answer the first question regarding automation requirements.");
	 result = false;
	}

	if(checkit2 <= 0 && result){
	 alert("Please answer the fourth question regarding key application.");
	 result = false;
	}
	if(result){
	 oError = checkFormRequiredFields(othis, 'InputFieldBad', 'InputListBoxBad', "MSMachineTotal LXMachineTotal UXMachineTotal VSMachineTotal ProjectBudgeted requirementsList requirementsAutomation startingMonth startingDay startingYear completingMonth completingDay completingYear objectives performobjectives staffnames whodecides");
	}

	if(oError){
	 oError.focus();
	 alert("Please you must enter a value for all required fields!");
	 result = false;
	}
	return result
}
