/////////////////////////////////////
//Copyright Joanne S E Smith       //
//Internet Health Library 2000     //
//All Rights Reserved              //
//e-mail: jsesmith@hotmail.com      //
//                                 //
//Simple Report Generator          //
//                                 //
/////////////////////////////////////
function analyze(){
	result1=0;
	result2=0;
	result3=0;
for (a=0;a<24;a=a+3){
		if (document.question.elements[a].checked) result1++
		};
for (a=1;a<24;a=a+3){
		if (document.question.elements[a].checked) result2++
		};
for (a=2;a<24;a=a+3){
		if (document.question.elements[a].checked) result3++
		};
if (result1>=result2) {
	if (result1>result3) {
	if (result1==result2) location="sun-risk-high-mod.htm"
	else location="sun-risk-high.htm"
	}
	}
if (result2>=result3) {
	if (result2>result1) {
	if (result2==result3) location="sun-risk-low-moderate.htm"
	else location="sun-risk-moderate.htm"
	}
	}
if (result3>=result1) {
	if (result3>result2) {
	if (result3==result1) {
		if (document.question.elements[3].checked
		|| document.question.elements[6].checked
		|| document.question.elements[9].checked) location="sun-risk-high.htm"
	else location="sun-risk-moderate.htm"} else location="sun-risk-low.htm"
	}
	}
	
}
	

