
function submitMatrixForm()
{
	document.getElementById("submitTyp").value = 0;
	document.getElementById("matrixForm").submit();	
}

function markColLine(col, line)
{
	var col = document.getElementById("matrixCol" + col);
	var line = document.getElementById("matrixLine" + line);
	
	line.className = "desc matrixMark";
	col.className = "matrixMark";
}

function unMarkColLine(col, line)
{
	var col = document.getElementById("matrixCol" + col);
	var line = document.getElementById("matrixLine" + line);
	
	line.className = "desc";
	col.className = null;
}

function markLine(obj)
{
	obj.style.backgroundColor = "#000000";
}

function unMarkLine(obj)
{
	obj.style.backgroundColor = "";
}

function showDetailLayer(id, show)
{
	var detail = document.getElementById(id);
	if(show)
	{
		detail.style.display = "block";
	}
	else
	{
		detail.style.display = "none";
	}
}

function onDel()
{
	if(confirm("Wollen Sie den Eintrag wirklich löschen?"))
	{
		document.getElementById("submitTyp").value = 3;
		document.getElementById("matrixForm").submit();
	}
}
