function sjekkFjellseterSkjema( form ){ if (form.fornavn.value== "") { alert( "Du må fylle inn fornavn!" ); form.fornavn.focus(); return false ; } if (form.etternavn.value== "") { alert( "Du må fylle inn etternavn!" ); form.etternavn.focus(); return false ; } if (form.klubb.value== "") { alert( "Du må fylle inn klubb!" ); form.klubb.focus(); return false ; } if (form.aar.value=="") { alert( "Du må fylle inn fødselsår!" ); form.aar.focus(); return false ; } if(parseInt(form.aar.value)!=form.aar.value-0){ alert( "Fødselsår må være heltall!" ); form.aar.focus(); return false ; } if (form.epost.value== "") { alert( "Du må fylle inn e-post!" ); form.epost.focus(); return false ; } if (form.antall.value=="") { alert( "Du må fylle inn antall tidligere starter!" ); form.antall.focus(); return false ; } if(parseInt(form.antall.value)!=form.antall.value-0){ alert( "Antall tidligere starter må være heltall!" ); form.antall.focus(); return false ; } return true ; }