
function checkform(no) {     // kontrola ci su vyplnene vsetky polia
 for (i=0;i<document.forms[0].elements.length-1;i++) {
   je=false;
   for (j=0;j<no.length;j++) { if (no[j]==i) je=true; }
   if (document.forms[0].elements[i].value=='' && !je) return false;
 }
 return true;
};



