function chkSubscriber(){
	f = document.newssubscriber
	if (f.email.value.length < 1){
		alert('Du skal indtaste en email');
		f.email.focus();
		return false
	}
	return true
}

function chkSubscriberClub18(){
	f = document.newssubscriber
	if (f.email.value.length < 1){
		alert('Du skal indtaste en e-mail.');
		f.email.focus();
		return false
	}
	else
	return true
}

function chkDepartmentSearch(){
	if(document.afd.zip.value.length !=4 || isNaN(document.afd.zip.value)){
		alert('Du skal indtaste et postnummer.')
		return false;
	}else {
		document.afd.submit();
		return false;
	}
}

function chkRecommend(){
	f = document.recommend
	if (f.email.value.length < 1){
		alert('Du skal indtaste en email');
		f.email.focus();
		return false
	}
	else
	if (f.email.value.length > 1 && emailCheck(f.email.value) == false){
		f.email.focus();
		return false
	}
	else
	if (f.info.value.length < 1){
		alert('Du skal indtaste en besked');
		f.info.focus();
		return false
	}
	else
	return true
}

function chkContact(){
	f = document.kontakt
	if (f.name.value.length < 1){
		alert('Du skal indtaste dit navn');
		f.name.focus();
		return false
	}
	else
	if (f.address.value.length < 1){
		alert('Du skal indtaste din adresse');
		f.address.focus();
		return false
	}
	else
	if (f.zip.value.length != 4 || isNaN(f.zip.value)){
		alert('Du skal indtaste postnummer');
		f.zip.focus();
		return false
	}
	else
	if (f.city.value.length < 1){
		alert('Du skal indtaste by');
		f.city.focus();
		return false
	}
	else
	if (f.phone.value.length < 1 && f.email.value.length < 1){
		alert('Du skal indtaste dit telefonnummer eller din email');
		f.phone.focus();
		return false
	}
	else
	if (f.email.value.length > 1 && emailCheck(f.email.value) == false){
		alert('Du skal indtaste en gyldig email');
		f.email.focus();
		return false
	}
	else
	return true
}

function chkDepContact(){
	f = document.kontakt
	if(f.name.value==''){
		alert('Du skal angive dit navn.');
		f.name.focus();
		return false;
	}
	if(f.info.value==''){
		alert('Du skal skrive en besked.');
		f.info.focus();
		return false;
	}
	else
	return true;
}

function chkApplyJob(){
	f = document.stilling
	if(f.Navn.value==''){
		alert('Du skal angive dit navn.');
		f.Navn.focus();
		return false;
	}
	else
	if (f.Adresse.value.length < 1){
		alert('Du skal indtaste din adresse');
		f.Adresse.focus();
		return false
	}
	else
	if (f.Postnr.value.length != 4 || isNaN(f.Postnr.value)){
		alert('Du skal indtaste postnummer');
		f.Postnr.focus();
		return false
	}
	else
	if (f.By.value.length < 1){
		alert('Du skal indtaste by');
		f.By.focus();
		return false
	}
	else
	if (f.Telefon.value.length < 1 && f.Email.value.length < 1){
		alert('Du skal indtaste dit telefonnummer eller din email');
		f.Telefon.focus();
		return false
	}
	else
	if (f.email.value.length > 1 && emailCheck(f.email.value) == false){
		alert('Du skal indtaste en gyldig email');
		f.email.focus();
		return false
	}
	else
	return true
}

function chkBorneopsparing(){
	f = document.borneopsparing
	if (f.cpr.value.length < 1){
		alert('Du skal indtaste dit CPR');
		f.cpr.focus();
		return false
	}
	else
	if (f.cpr2.value.length < 1){
		alert('Du skal indtaste barnets CPR');
		f.cpr2.focus();
		return false
	}
	else
	if (f.name.value.length < 1){
		alert('Du skal indtaste dit navn');
		f.name.focus();
		return false
	}
	else
	if (f.name2.value.length < 1){
		alert('Du skal indtaste barnets navn');
		f.name2.focus();
		return false
	}
	else
	if (f.address.value.length < 1){
		alert('Du skal indtaste din adresse');
		f.address.focus();
		return false
	}
	else
	if (f.address2.value.length < 1){
		alert('Du skal indtaste barnets adresse');
		f.address2.focus();
		return false
	}
	else
	if (f.zip.value.length != 4 || isNaN(f.zip.value)){
		alert('Du skal indtaste postnummer');
		f.zip.focus();
		return false
	}
	else
	if (f.city.value.length < 1){
		alert('Du skal indtaste by');
		f.city.focus();
		return false
	}
	else
	if (f.zip2.value.length != 4 || isNaN(f.zip2.value)){
		alert('Du skal indtaste postnummer');
		f.zip2.focus();
		return false
	}
	else
	if (f.city2.value.length < 1){
		alert('Du skal indtaste by');
		f.city2.focus();
		return false
	}
	else
	if (f.phone.value.length < 1){
		alert('Du skal indtaste telefonnummer');
		f.phone.focus();
		return false
	}
	else
	if (f.namebank.value.length < 1){
		alert('Du skal indtaste bank/sparekassens navn');
		f.city.focus();
		return false
	}
	else
	if (f.regnr.value.length < 1){
		alert('Du skal indtaste regnr');
		f.regnr.focus();
		return false
	}
	else
	if (f.accountnr.value.length < 1){
		alert('Du skal indtaste kontonummer');
		f.accountnr.focus();
		return false
	}
	else
	if (f.bankadr.value.length < 1){
		alert('Du skal indtaste adresse');
		f.accountnr.focus();
		return false
	}
	else
	if (f.bankzip.value.length != 4 || isNaN(f.bankzip.value)){
		alert('Du skal indtaste postnummer');
		f.bankzip.focus();
		return false
	}
	else
	if (f.bankcity.value.length < 1){
		alert('Du skal indtaste by');
		f.bankcity.focus();
		return false
	}
	else
	return true
}


function chkBehovsanalyse(){
	f = document.behov
	if(f.Navn.value==''){
		alert('Du skal angive dit navn.');
		f.Navn.focus();
		return false;
	}
	else
	if (f.Adresse.value.length < 1){
		alert('Du skal indtaste din adresse');
		f.Adresse.focus();
		return false
	}
	else
	if (f.Postnr.value.length != 4 || isNaN(f.Postnr.value)){
		alert('Du skal indtaste postnummer');
		f.Postnr.focus();
		return false
	}
	else
	if (f.By.value.length < 1){
		alert('Du skal indtaste by');
		f.By.focus();
		return false
	}
	else
	if (f.Telefon.value.length < 1 && f.Email.value.length < 1){
		alert('Du skal indtaste dit telefonnummer');
		f.Telefon.focus();
		return false
	}
	else
	if (f.Pensionsalder.selectedIndex < 2){
		alert('Du skal vælge pensionsalder');
		f.Pensionsalder.focus();
		return false
	}
	else
	return true
}

function chkOpretBorneopsparing(strBack){
	f = document.borneopsparing
	if (f.cpr.value.length < 1){
		alert('Du skal indtaste dit CPR');
		f.cpr.focus();
		return false
	}
	else
	if (f.cpr2.value.length < 1){
		alert('Du skal indtaste barnets CPR');
		f.cpr2.focus();
		return false
	}
	else
	if (f.name.value.length < 1){
		alert('Du skal indtaste dit navn');
		f.name.focus();
		return false
	}
	else
	if (f.name2.value.length < 1){
		alert('Du skal indtaste barnets navn');
		f.name2.focus();
		return false
	}
	else
	if (f.address.value.length < 1){
		alert('Du skal indtaste din adresse');
		f.address.focus();
		return false
	}
	else
	if (f.address2.value.length < 1){
		alert('Du skal indtaste barnets adresse');
		f.address2.focus();
		return false
	}
	else
	if (f.zip.value.length != 4 || isNaN(f.zip.value)){
		alert('Du skal indtaste postnummer');
		f.zip.focus();
		return false
	}
	else
	if (f.city.value.length < 1){
		alert('Du skal indtaste by');
		f.city.focus();
		return false
	}
	else
	if (f.zip2.value.length != 4 || isNaN(f.zip2.value)){
		alert('Du skal indtaste postnummer');
		f.zip2.focus();
		return false
	}
	else
	if (f.city2.value.length < 1){
		alert('Du skal indtaste by');
		f.city2.focus();
		return false
	}
	else
	if (f.phone.value.length < 1){
		alert('Du skal indtaste telefonnummer');
		f.phone.focus();
		return false
	}
	else
	if (f.bindingsdato.value == 'dd-mm-åå'){
		alert('Du skal indtaste en bindingsdato');
		f.bindingsdato.focus();
		return false
	}
	else
		{
			if (strBack == 'true'){history.back()};
			return true;
		}	
}

function chkOpretBorneborn(strBack){
	f = document.bornebornskonto
	if (f.cpr.value.length < 1){
		alert('Du skal indtaste dit CPR');
		f.cpr.focus();
		return false
	}
	else
	if (f.cpr2.value.length < 1){
		alert('Du skal indtaste barnets CPR');
		f.cpr2.focus();
		return false
	}
	else
	if (f.name.value.length < 1){
		alert('Du skal indtaste dit navn');
		f.name.focus();
		return false
	}
	else
	if (f.name2.value.length < 1){
		alert('Du skal indtaste barnets navn');
		f.name2.focus();
		return false
	}
	else
	if (f.address.value.length < 1){
		alert('Du skal indtaste din adresse');
		f.address.focus();
		return false
	}
	else
	if (f.address2.value.length < 1){
		alert('Du skal indtaste barnets adresse');
		f.address2.focus();
		return false
	}
	else
	if (f.zip.value.length != 4 || isNaN(f.zip.value)){
		alert('Du skal indtaste postnummer');
		f.zip.focus();
		return false
	}
	else
	if (f.city.value.length < 1){
		alert('Du skal indtaste by');
		f.city.focus();
		return false
	}
	else
	if (f.zip2.value.length != 4 || isNaN(f.zip2.value)){
		alert('Du skal indtaste postnummer');
		f.zip2.focus();
		return false
	}
	else
	if (f.city2.value.length < 1){
		alert('Du skal indtaste by');
		f.city2.focus();
		return false
	}
	else
	if (f.phone.value.length < 1){
		alert('Du skal indtaste telefonnummer');
		f.phone.focus();
		return false
	}
	else
	if (f.bindingsdato.value == 'dd-mm-åå'){
		alert('Du skal indtaste en bindingsdato');
		f.bindingsdato.focus();
		return false
	}
	else
		{
			if (strBack == 'true'){history.back()};
			return true;
		}	
}

function chkInvesterBorne(){
	f = document.investerBorne
	if (f.name.value.length < 1){
		alert('Du skal indtaste dit navn');
		f.name.focus();
		return false
	}
	else
	if (f.name2.value.length < 1){
		alert('Du skal indtaste barnets navn');
		f.name2.focus();
		return false
	}
	else
	if (f.cpr.value.length < 1){
		alert('Du skal indtaste dit CPR');
		f.cpr.focus();
		return false
	}
	else
	if (f.cpr2.value.length < 1){
		alert('Du skal indtaste barnets CPR');
		f.cpr2.focus();
		return false
	}
	else
	if (f.phone.value.length < 1 && f.email.value.length < 1){
		alert('Du skal indtaste telefonnummer eller email');
		f.phone.focus();
		return false
	}
	else
	if (f.email.value.length > 1 && emailCheck(f.email.value) == false){
		alert('Du skal indtaste en gyldig email');
		f.email.focus();
		return false
	}
	else
		return true;


}

function chkCalcBorn(){
	f = document.born
	if (isNaN(f.fremRente.value) || (f.fremRente.value == '')){
		alert('Du skal indtaste et tal.\n\nBrug evt. punktum i stedet for komma.');
		f.fremRente.focus();
		return false
	}
	else
		return true;
}

function chkCalcHojrente(){
	f = document.hojrente;
	if (isNaN(f.indskud.value) || (f.indskud.value.length < 1)){
		alert('Du skal indtaste et tal.\n\nBrug evt. punktum i stedet for komma.');
		f.indskud.focus();
		return false
	}
	else
	if (isNaN(f.fremRente.value) || (f.fremRente.value == '')){
		alert('Du skal indtaste et tal.\n\nBrug evt. punktum i stedet for komma.');
		f.fremRente.focus();
		return false
	}
	else
	if (f.fremRente.value > 100){
		alert('Du skal indtaste et tal under 100');
		f.fremRente.focus();
		return false
	}
	else
	if (isNaN(f.maaneder.value) || (f.maaneder.value == '')){
		alert('Du skal indtaste et tal.\n\nBrug evt. punktum i stedet for komma.');
		f.maaneder.focus();
		return false
	}
	else
	if (f.maaneder.value > 600){
		alert('Du skal indtaste et tal under 600');
		f.maaneder.focus();
		return false
	}
	else
		return true;

}

function chkOverforKonto(){
	f = document.overfor
	if (f.cpr.value.length < 1){
		alert('Du skal indtaste dit CPR');
		f.cpr.focus();
		return false
	}
	else
	if (f.name.value.length < 1){
		alert('Du skal indtaste dit navn');
		f.name.focus();
		return false
	}
	else
	if (f.address.value.length < 1){
		alert('Du skal indtaste din adresse');
		f.address.focus();
		return false
	}
	else
	if (f.zip.value.length != 4 || isNaN(f.zip.value)){
		alert('Du skal indtaste postnummer');
		f.zip.focus();
		return false
	}
	else
	if (f.city.value.length < 1){
		alert('Du skal indtaste by');
		f.city.focus();
		return false
	}
	else
	if (f.phone.value.length < 1){
		alert('Du skal indtaste telefonnummer');
		f.phone.focus();
		return false
	}
	else
	if (f.institut.value.length < 1){
		alert('Du skal indtaste navnet på dit nuværende pengeinstitut');
		f.institut.focus();
		return false
	}
	else
	if (f.institutaddress.value.length < 1){
		alert('Du skal indtaste adressen på dit nuværende pengeinstitut');
		f.institutaddress.focus();
		return false
	}
	else
	if (f.institutzip.value.length != 4 || isNaN(f.institutzip.value)){
		alert('Du skal indtaste postnummer på dit nuværende pengeinstitut');
		f.institutzip.focus();
		return false
	}
	else
	if (f.institutcity.value.length < 1){
		alert('Du skal indtaste by på dit nuværende pengeinstitut');
		f.institutcity.focus();
		return false
	}
	else
	if (f.regnr.value.length < 1){
		alert('Du skal indtaste regnr');
		f.regnr.focus();
		return false
	}
	else
		return true;

}

function chkLoanBil(){
	f = document.ansogLaan
	if (f.laantype.options.selectedIndex < 2){
		alert('Du skal vælge lånetype');
		f.laanetype.focus();
		return false
	}
	else
	if (f.cpr.value.length < 1){
		alert('Du skal indtaste dit CPR');
		f.cpr.focus();
		return false
	}
	else
	if (f.name.value.length < 1){
		alert('Du skal indtaste dit navn');
		f.name.focus();
		return false
	}
	else
	if (f.address.value.length < 1){
		alert('Du skal indtaste din adresse');
		f.address.focus();
		return false
	}
	else
	if (f.zip.value.length != 4 || isNaN(f.zip.value)){
		alert('Du skal indtaste postnummer');
		f.zip.focus();
		return false
	}
	else
	if (f.city.value.length < 1){
		alert('Du skal indtaste by');
		f.city.focus();
		return false
	}
	else
	if (f.phone.value.length < 1){
		alert('Du skal indtaste telefonnummer');
		f.phone.focus();
		return false
	}
	else
	if (f.belob.value.length < 1 || isNaN(f.belob.value)){
		alert('Du skal indtaste lånebløb');
		f.belob.focus();
		return false
	}
	else
	if (f.bilmaerke.value.length < 1){
		alert('Du skal indtaste bilmærke');
		f.bilmaerke.focus();
		return false
	}
	else
	if (f.bilmodel.value.length < 1){
		alert('Du skal indtaste bilmodel');
		f.bilmodel.focus();
		return false
	}

	else
	if (f.bilaar.value.length < 1){
		alert('Du skal indtaste bilårgang');
		f.bilaar.focus();
		return false
	}
	else
	if (f.bilkmstand.value.length < 1){
		alert('Du skal indtaste bilens kilometerstand');
		f.bilkmstand.focus();
		return false
	}
	else
	return true

}

function chkLoanBolig(){
	f = document.ansogLaan
	if (f.laantype.options.selectedIndex < 2){
		alert('Du skal vælge lånetype');
		f.laanetype.focus();
		return false
	}
	else
	if (f.cpr.value.length < 1){
		alert('Du skal indtaste dit CPR');
		f.cpr.focus();
		return false
	}
	else
	if (f.name.value.length < 1){
		alert('Du skal indtaste dit navn');
		f.name.focus();
		return false
	}
	else
	if (f.address.value.length < 1){
		alert('Du skal indtaste din adresse');
		f.address.focus();
		return false
	}
	else
	if (f.zip.value.length != 4 || isNaN(f.zip.value)){
		alert('Du skal indtaste postnummer');
		f.zip.focus();
		return false
	}
	else
	if (f.city.value.length < 1){
		alert('Du skal indtaste by');
		f.city.focus();
		return false
	}
	else
	if (f.phone.value.length < 1){
		alert('Du skal indtaste telefonnummer');
		f.phone.focus();
		return false
	}
	else
	if (f.belob.value.length < 1 || isNaN(f.belob.value)){
		alert('Du skal indtaste lånebløb');
		f.belob.focus();
		return false
	}
	else
	return true
}

function chkLoanForbrug(){
	f = document.ansogLaan
	if (f.laantype.options.selectedIndex < 2){
		alert('Du skal vælge lånetype');
		f.laanetype.focus();
		return false
	}
	else
	if (f.cpr.value.length < 1){
		alert('Du skal indtaste dit CPR');
		f.cpr.focus();
		return false
	}
	else
	if (f.name.value.length < 1){
		alert('Du skal indtaste dit navn');
		f.name.focus();
		return false
	}
	else
	if (f.address.value.length < 1){
		alert('Du skal indtaste din adresse');
		f.address.focus();
		return false
	}
	else
	if (f.zip.value.length != 4 || isNaN(f.zip.value)){
		alert('Du skal indtaste postnummer');
		f.zip.focus();
		return false
	}
	else
	if (f.city.value.length < 1){
		alert('Du skal indtaste by');
		f.city.focus();
		return false
	}
	else
	if (f.phone.value.length < 1){
		alert('Du skal indtaste telefonnummer');
		f.phone.focus();
		return false
	}
	else
	if (f.belob.value.length < 1 || isNaN(f.belob.value)){
		alert('Du skal indtaste lånebløb');
		f.belob.focus();
		return false
	}
	else
	if (f.laaneformaal.value.length < 1){
		alert('Du skal indtaste låneformål');
		f.laaneformaal.focus();
		return false
	}
	else
	return true
}

function chkOpretkonto(){
	f = document.opret
	if ((f.mix.checked==false) && (f.hojrente.checked==false) && (f.eventyr.checked==false) && (f.budget.checked==false) && (f.o24mdr.checked==false) && (f.club18.checked==false) && (f.million.checked==false) && (f.udilivet.checked==false) && (f.toprente.checked==false)){
		alert('Du skal vælge en eller flere kontoformer');
		f.mix.focus();
		return false
	}
	else
	if (f.KontohaverCPR.value.length < 1){
		alert('Du skal indtaste dit CPR');
		f.KontohaverCPR.focus();
		return false
	}
	else
	if (f.KontohaverNavn.value.length < 1){
		alert('Du skal indtaste dit navn');
		f.KontohaverNavn.focus();
		return false
	}
	else
	if (f.KontohaverAdresse.value.length < 1){
		alert('Du skal indtaste din adresse');
		f.KontohaverAdresse.focus();
		return false
	}
	else
	if (f.KontohaverPostnr.value.length != 4 || isNaN(f.KontohaverPostnr.value)){
		alert('Du skal indtaste postnummer');
		f.KontohaverPostnr.focus();
		return false
	}
	else
	if (f.KontohaverBy.value.length < 1){
		alert('Du skal indtaste by');
		f.KontohaverBy.focus();
		return false
	}
	else
	if (f.Telefon.value.length < 1){
		alert('Du skal indtaste telefonnummer');
		f.Telefon.focus();
		return false
	}
	else
	if (f.Email.value.length < 1){
		alert('Du skal indtaste email');
		f.Email.focus();
		return false
	}
	else
	if (f.Email.value.length > 1 && emailCheck(f.Email.value) == false){
		f.Email.focus();
		return false
	}
	else
	return true;
}


function emailCheck (emailStr) {
/* The following pattern is used to check if the entered e-mail address
   fits the user@domain format.  It also is used to separate the username
   from the domain. */
var emailPat=/^(.+)@(.+)$/
/* The following string represents the pattern for matching all special
   characters.  We don't want to allow special characters in the address.
   These characters include ( ) < > @ , ; : \ " . [ ]    */
var specialChars="\\(\\)<>@,;:\\\\\\\"\\.\\[\\]"
/* The following string represents the range of characters allowed in a
   username or domainname.  It really states which chars aren't allowed. */
var validChars="\[^\\s" + specialChars + "\]"
/* The following pattern applies if the "user" is a quoted string (in
   which case, there are no rules about which characters are allowed
   and which aren't; anything goes).  E.g. "jiminy cricket"@disney.com
   is a legal e-mail address. */
var quotedUser="(\"[^\"]*\")"
/* The following pattern applies for domains that are IP addresses,
   rather than symbolic names.  E.g. joe@[123.124.233.4] is a legal
   e-mail address. NOTE: The square brackets are required. */
var ipDomainPat=/^\[(\d{1,3})\.(\d{1,3})\.(\d{1,3})\.(\d{1,3})\]$/
/* The following string represents an atom (basically a series of
   non-special characters.) */
var atom=validChars + '+'
/* The following string represents one word in the typical username.
   For example, in john.doe@somewhere.com, john and doe are words.
   Basically, a word is either an atom or quoted string. */
var word="(" + atom + "|" + quotedUser + ")"
// The following pattern describes the structure of the user
var userPat=new RegExp("^" + word + "(\\." + word + ")*$")
/* The following pattern describes the structure of a normal symbolic
   domain, as opposed to ipDomainPat, shown above. */
var domainPat=new RegExp("^" + atom + "(\\." + atom +")*$")


/* Finally, let's start trying to figure out if the supplied address is
   valid. */

/* Begin with the coarse pattern to simply break up user@domain into
   different pieces that are easy to analyze. */
var matchArray=emailStr.match(emailPat)
if (matchArray==null) {
  /* Too many/few @'s or something; basically, this address doesn't
     even fit the general mould of a valid e-mail address. */
    //alert("Fejl i emailadresse.")
	return false
}
var user=matchArray[1]
var domain=matchArray[2]

// See if "user" is valid
if (user.match(userPat)==null) {
    // user is not valid
    //alert("Fejl i emailadresse.")
    return false
}

/* if the e-mail address is at an IP address (as opposed to a symbolic
   host name) make sure the IP address is valid. */
var IPArray=domain.match(ipDomainPat)
if (IPArray!=null) {
    // this is an IP address
	  for (var i=1;i<=4;i++) {
	    if (IPArray[i]>255) {
    //alert("Fejl i emailadresse.")
		return false
	    }
    }
    return true
}

// Domain is symbolic name
var domainArray=domain.match(domainPat)
if (domainArray==null) {
    //alert("Fejl i emailadresse.")
    return false
}

/* domain name seems valid, but now make sure that it ends in a
   three-letter word (like com, edu, gov) or a two-letter word,
   representing country (uk, nl), and that there's a hostname preceding
   the domain or country. */

/* Now we need to break up the domain to get a count of how many atoms
   it consists of. */
var atomPat=new RegExp(atom,"g")
var domArr=domain.match(atomPat)
var len=domArr.length
/*
//udkommenteret grundet '.name' og '.museum' o.l.
if (domArr[domArr.length-1].length<2 ||
    domArr[domArr.length-1].length>3) {
   // the address must end in a two letter or three letter word.
    alert("Fejl i emailadresse.")
   return false
}
*/
// Make sure there's a host name preceding the domain.
if (len<2) {
   var errStr="This address is missing a hostname!"
    //alert("Fejl i emailadresse.")
   return false
}

// If we've gotten this far, everything's valid!
return true;
}
//  End -->

function contactBlivKunde(){
	if(document.getElementById){
		daTd = document.getElementById("bemaerk")
		daTxt = document.getElementById("cprtxt")
		if(document.kontakt.kunde.checked){
			daTd.innerHTML = '<span class="stdBig">BEMÆRK: </span>Til udvælgelsen af din personlige kunderådgiver, er du velkommen til, at angive særlige forhold du ønsker opfyldt.';
			daTxt.innerHTML = 'Cpr-nummer <font color="#EE3338">*</font>';
			
		}else{
			daTd.innerHTML = '';
			daTxt.innerHTML = 'Cpr-nummer';
		}			
	}
}

