function annatland(strValue) {
	if (strValue == "annatland") {
		document.getElementById("annatland").style.display="block";
	} else {
		document.getElementById("annatland").style.display="none";
	}
}

function checkRows(obj){
	var counter = obj.value.match(/\n/gi);
		if(counter) {
			if(counter.length > 2) {
				obj.rows = counter.length+3;
			} else {
				obj.rows = 4;
			}
		}

}

function logout() {
	if (confirm("Är du säker på att du vill logga ut?")) {
		return true;
	} else {
		return false;
	}
}