function ValidateForm()
{

var i = 0


for (var z = 1; z <= 23; z++){
if (document.getElementById("Q"+z+"_0").checked == "1")
                { i = i + 1; }
}


if (i >=18){
//alert("18 or over questions answered Yes");
window.location="http://jamessprunt.edu/DL_Self_Assessment_Ready.html";
}else{
//alert("17 or fewer questions answered Yes");
window.location="http://jamessprunt.edu/DL_Self_Assessment_Not_Ready.html";
}
//alert(i);
} 