function setLevAdr(isChecked)
{
	with (window.document.frmCheckout) {
	
			
			txtLevFirma.value        = txtPostFirma.value;
			txtLevAdresse.value      = txtPostAdresse.value;
			txtLevPostnr.value       = txtPostPostnr.value;
			txtLevSted.value         = txtPostSted.value;			
			txtLevLand.value         = txtPostLand.value;
					
		
	}
}


function sjekkPostOgLevAdr()
{
	with (window.document.frmCheckout) {
		if (isEmpty(txtPostFornavn, 'Vennligst fyll ut "fornavn"')) {
			return false;
		} else if (isEmpty(txtPostEtternavn, 'Vennligst fyll ut "etternavn"')) {
			return false;
		} else if (isEmpty(txtEpost, 'Vennligst fyll ut "E-post"')) {
			return false;
		} else if (isEmpty(txtTlf, 'Vennligst fyll ut "telefon nummer"')) {
			return false;
		} 
	}
}

