function sjekkskjema() {
  document.webnorge.fromname.style.border='#AAA 1px solid';
  document.getElementById('sjekknavn').style.color='#333';
  document.webnorge.fromnamemail.style.border='#AAA 1px solid';
  document.getElementById('sjekkepost').style.color='#333';
 
	if(document.webnorge.fromname.value <=0) {alert("Skriv inn ditt navn"); document.getElementById('sjekknavn').style.color='red'; document.webnorge.fromname.style.border='#F00 1px solid'; document.webnorge.fromname.focus(); return false;}
  else if (document.webnorge.fromnamemail.value <= 0 ) {alert("Skriv inn din e-post adresse!"); document.getElementById('sjekkepost').style.color='red'; document.webnorge.fromnamemail.style.border='#F00 1px solid'; document.webnorge.fromnamemail.focus(); return false;}
  else if (document.webnorge.fromnamemail.value.indexOf("@") == -1) {alert("Din e-post adresse er ugyldig!"); document.getElementById('sjekkepost').style.color='red'; document.webnorge.fromnamemail.style.border='#F00 1px solid'; document.webnorge.fromnamemail.focus(); return false;}
  else if (document.webnorge.fromnamemail.value.indexOf(".") == -1) {alert("Din e-post adresse er ugyldig!"); document.getElementById('sjekkepost').style.color='red'; document.webnorge.fromnamemail.style.border='#F00 1px solid'; document.webnorge.fromnamemail.focus(); return false;}
  else
	return true;
}
