function anyCheck(form) {
    var budget = 0;
	var additionalinfo = " ";
    var financial = 0;
    var blank = 0;
	var answer = " ";
    for (var i=0;i<5;i++) {
        var yesChoice = eval("document.LowerInterest.q" + i + "[0].checked");
        var noChoice  = eval("document.LowerInterest.q" + i + "[1].checked");
        var yesAnswer = eval("document.LowerInterest.q" + i + "[0].value");
        var noAnswer  = eval("document.LowerInterest.q" + i + "[1].value");

        if (yesChoice == noChoice)
            blank++; // can't both be checked, thus must be both unchecked
        else {
            if ((yesChoice.toString() == yesAnswer) &&
                (noChoice.toString() == noAnswer))
                budget++;
            else
                financial++;
        }
    }
	
	if (blank>2)
		answer = "Please provide more information so we can help direct you to the resources that will benefit you most.";
	
	else if (budget>3)
		answer = "It appears you need a budget solution! There are a variety of budgetary items you can evaluate to increase cash flow. Look at general operating expenses such as telephone, office supplies, utilities, program expense, outside services/consultants, use of paid worship team members, travel & entertainment and staff. Any one or combination thereof can help reduce your monthly overhead.";
	else 
		answer = "It appears that you qualify to explore a refinancing! For a quick email response, fill in the form below.";
		
	form.solutions.value = answer;
	
}
