function goto(url) {

        location.href=url;
}

function sprawdz_pyt(formularz) {
      var j = 0;
      for (i=0;i<document.forms[1].elements.length;i++) {
      	         if (document.forms[1].elements[i].checked) {
      		j = j+1;
      	}
      }
    if (j<5) { alert("Musisz odpowiedzieć na wszystkie pytania");
              return false;
    } else return true;
}

