function checkhyperthyroid(){	count = 0;	if (document.myFORM1.elements[0].checked) count=count+1;		if (document.myFORM2.elements[0].checked) count=count+1;		if (document.myFORM3.elements[0].checked) count=count+1;		if (document.myFORM4.elements[0].checked) count=count+1;	if (document.myFORM5.elements[0].checked) count=count+1;		if (document.myFORM6.elements[0].checked) count=count+1;		if (document.myFORM7.elements[0].checked) count=count+1;		if (document.myFORM8.elements[0].checked) count=count+1;		if (document.myFORM9.elements[0].checked) count=count+1;			if (count<3){classification = 0} ;if (count>2){classification = 1} ;	switch(classification)	{				case 0 :alert ("該当項目数は "+count+"です．\n甲状腺機能亢進症を疑わせる所見・症状は多くありません．"); break;		case 1 :alert ("該当項目数は "+count+"です．\n甲状腺機能亢進症の可能性があります．甲状腺機能亢進症は女性に多い病気で，\n血液中のホルモン検査で簡単に診断できます．一度内科で診察を受けてはいかがですか．"); break;		default :			alert ("エラー");	} ;}