function IsValidForm(theForm) {
	if (theForm.txtFornamn.value == "") {
        alert("Ange namn!");
        theForm.txtFornamn.focus();
        return(false);
    }
    if (theForm.txtEfternamn.value == "") {
        alert("Ange efternamn!");
        theForm.txtEfternamn.focus();
        return(false);
    }
     if (theForm.txtEpost.value == "") {
        alert("Ange epostadress!");
        theForm.txtEpost.focus();
        return(false);
    }
    if (theForm.txtTelefon.value == "") {
        alert("Ange telefon!");
        theForm.txtTelefon.focus();
        return(false);
    }
    return(true);
}

