



function validForm(thisform) {


if (thisform.namn.value=="") {
alert("Du har inte angivit något namn")
thisform.namn.focus()
return false
}

if (thisform.adress.value=="") {
alert("Du har inte angivit någon adress")
thisform.adress.focus()
return false
}

if (thisform.postnr.value=="") {
alert("Du har inte angivit något postnummer")
thisform.postnr.focus()
return false
}

if (thisform.ort.value=="") {
alert("Du har inte angivit någon ort")
thisform.ort.focus()
return false
}


if (thisform.telefonnr.value=="") {
alert("Du har inte angivit något telefonnummer")
thisform.telefonnr.focus()
return false
}


if (thisform.accepterar.checked=="") { 
alert("Du har inte kryssat i att du accepterar att beställningen är bindande och att du tagit del av köpinformationen") 
thisform.accepterar.focus() 
return false 
} 



return true


}

