

//----- Ändrar färg i listor vid onmouseover
function rowColor(id)
{
	row = document.getElementById(id.id)
	row.style.background = '#d7d6f9'
}


//----- Ändrar tillbaka färgen i listor vid onmouseout
function rowColorBack(id)
{
	row = document.getElementById(id.id)
	row.style.background = 'white'
}


//----- Tar bort förbjudna tecken
function remove(id)
{
	var field = document.getElementById(id.name);
	var text = field.value;

	text = text.replace(/\'/g,"´");
	field.value = text;
}


//----- Kollar så man valt något i rullistan
function chkselect(id, msg)
{
	var field = document.getElementById(id)

	if (field.value == ""){

		alert(msg)
		field.focus()
		return false
	}

	return true
}


//----- Kollar så man skrivit något i input-fälten
function chkinput(id, msg)
{
	field = document.getElementById(id)

	if (field.value.length < 2){

		alert(msg)
		field.focus()
		return false
	}

	return true
}


//----- Skickar info i ett Form
function sendForm(todo, idno)
{
	what = document.getElementById("todoForm")

	what.todo.value = todo
	what.IDno.value = idno
	what.pageIDno.value = idno
	what.submit()
}
