<!-- 
function check() 
{ 
a = 0; 
b = 0; 
c = 0; 
d = 0;

if(document.form1.a1.checked) a++;
if(document.form1.b1.checked) b++;
if(document.form1.c1.checked) c++;
if(document.form1.a2.checked) a++;
if(document.form1.b2.checked) b++; 
if(document.form1.c2.checked) c++; 
if(document.form1.d2.checked) d++; 
if(document.form1.a3.checked) a++;
if(document.form1.c3.checked) c++; 
if(document.form1.d3.checked) d++; 
if(document.form1.a4.checked) a++;
if(document.form1.b4.checked) b++; 
if(document.form1.d4.checked) d++;
if(document.form1.b5.checked) b++;
if(document.form1.c5.checked) c++; 
if(document.form1.d5.checked) d++; 


//alert(counta+"個チェックされています"+countb+"個チェックされています"); 

type();
}

function type()
{
jpURL ="type.html";
stra = a;
strb = b;
strc = c;
strd = d;
location.href = "linkc.cgi?url="+"http://www.seikaku.com/2/"+jpURL+"?"+stra+strb+strc+strd+"&file=shindan";
//location.href =jpURL+"?"+stra+strb+strc+strd;
}

// -->
