//Byter bakgrundsfärg på inputfält (focus)
function changeBgColor(id){
	document.getElementById(id).style.backgroundColor = "#fcfcfc";
}
//Byter bakgrundsfärg på inputfält (onblur)
function changeBackBgColor(id){
	document.getElementById(id).style.backgroundColor = "#ffffff";
}

//Kryssar/avkryssar alla checkboxar
function checkAll(id, intId){
	for(i = 1; i <= intId; i++){
		document.getElementById(id+i).checked = true;
	}
}
function uncheckAll(id, intId){
	for(i = 1; i <= intId; i++){
		document.getElementById(id+i).checked = false;
	}
}




