﻿var strPatEmail = /^\w[\w\.\-]*@\w[\w\-\.]*\.\w{2}[\w\.\-\/]*$/i;

function validate_regainpassword(frm) {
	var send;

	if (!strPatEmail.test(frm.email.value) ) {
		send = false;
	}
	
	if (send == false) { 
		alert("Indtast venligst gyldig emailadresse");
		return false;
	}
	else {
		return true;
	}
	

}


	
