function checkhypothyroid(){	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 (document.myFORM10.elements[0].checked) count=count+1;		if (document.myFORM11.elements[0].checked) count=count+1;		if (document.myFORM12.elements[0].checked) count=count+1;		if (count<4){classification = 0} ;if ((count>3)&&(count<8)){classification = 1} ;if (count>7){classification = 2} ;	switch(classification)	{				case 0 :alert ("該当項目数は " +count+ "です．\n甲状腺機能低下症を疑わせる所見・症状は多くありません．"); break;		case 1 :alert ("該当項目数は " +count+ "です．甲状腺機能低下症の可能性があります．\n甲状腺機能低下症は女性に多く，見逃されやすい病気です．\n血液中のホルモン検査で簡単に診断できます．一度内科で診察を受けてはいかがですか．"); break;		case 2 :alert ("該当項目数は " +count+ "です．甲状腺機能低下症が強く疑われます．\n血液中のホルモン検査で簡単に診断でき，治療も簡単です．内科で診察を受けることを勧めます．"); break;		default :			alert ("エラー");	} ;}