function test_it(entry) {
if (entry.value!=null && entry.value.length!=0) {
entry.value=""+ eval(entry.value);
}
computeForm(entry.form);
}
function computeForm(form) {
var total=0

for (var count=0; count<3; count++)
{
if (form.a[count].checked){
var total=total+parseInt(form.a[count].value);
}
}
for (var count=0; count<3; count++)
{
if (form.b[count].checked){
var total=total+parseInt(form.b[count].value);
}
}
for (var count=0; count<3; count++)
{
if (form.c[count].checked){
var total=total+parseInt(form.c[count].value);
}
}
for (var count=0; count<3; count++)
{
if (form.d[count].checked){
var total=total+parseInt(form.d[count].value);
}
}
for (var count=0; count<3; count++)
{
if (form.e[count].checked){
var total=total+parseInt(form.e[count].value);
}
}
for (var count=0; count<3; count++)
{
if (form.f[count].checked){
var total=total+parseInt(form.f[count].value);
}
}

for (var count=0; count<3; count++)
{
if (form.g[count].checked){
var total=total+parseInt(form.g[count].value);
}
}
window.location="/investing/certify/fail.jsp"
if (total<4){window.location="/investing/certify/fail.jsp" }
else if (total>= 4 && total<9) {window.location='/investing/certify/pass.jsp' }
else if (total>= 9 && total<15) {window.location='/investing/certify/pass.jsp' }


}
