// JavaScript Document
border_style = "solid";
border_width = "1";
//borderCOLORAKTIV = "#FFFFFF";
//borderCOLORAKTIV_A = "#99CC33";
//backAKTIV = "#B5B5B5";
//borderCOLORINAKTIV = "#B4D966";

// Änderung NUR Tabellenrand beim Mouseover
// Farbe muß übergeben werden
function TBL_RAND(TBLZEILE, TBLCOLOR) {
	eval("document.all."+ TBLZEILE +".style.borderStyle = border_style ");
	eval("document.all."+ TBLZEILE +".style.borderWidth = border_width ");
	eval("document.all."+ TBLZEILE +".style.borderColor = TBLCOLOR");
}
// Änderung  NUR Tabellenhintergrund
// Farbe muß übergeben werden
function TBL_BACK(TBLZEILE, TBLCOLOR) {
	eval("document.all."+ TBLZEILE +".style.background = TBLCOLOR");
}
// Änderung des Tabellenhintergrundes UND des Tabellenrandes
// Farben müssen übergeben werden >> Randfarbe, Hintergrundfarbe
function TBL_RBACK(TBLZEILE, TBLCOLOR, TBLCOLOR2) {
	eval("document.all."+ TBLZEILE +".style.borderStyle = border_style ");
	eval("document.all."+ TBLZEILE +".style.borderWidth = border_width ");
	eval("document.all."+ TBLZEILE +".style.borderColor = TBLCOLOR ");
	eval("document.all."+ TBLZEILE +".style.background = TBLCOLOR2");
}
// Wiederherstellung NUR Tabellenrand
function TBL_OFF(TBLZEILE, TBLORIG) {
	eval("document.all."+ TBLZEILE +".style.borderStyle = border_style ");
	eval("document.all."+ TBLZEILE +".style.borderColor =  TBLORIG");
}
// Wiederherstellung NUR Tabellenhintergrund
function TBL_BGOFF(TBLZEILE, TBLORIG) {	// Tabellenhintergrund wiederherstellen
	eval("document.all."+ TBLZEILE +".style.background = TBLORIG ");
}
// Wiederherstellung Tabellenrand UND Hintergrund
// Übergabe Farbe >> Randfarbe, Hintergrund
function TBL_RBOFF(TBLZEILE, TBLORIG, TBLORIG2) {
	eval("document.all."+ TBLZEILE +".style.borderStyle = border_style ");
	eval("document.all."+ TBLZEILE +".style.borderWidth = border_width ");
	eval("document.all."+ TBLZEILE +".style.borderColor =  TBLORIG");
	eval("document.all."+ TBLZEILE +".style.background = TBLORIG2");
}

function TBL_CLICK(strLINK, strFRAME) {
	document.aktion.method = "POST";
	document.aktion.action = strLINK;
	document.aktion.target = strFRAME;
	document.aktion.submit();
	return true;
}
function TBL_CLICKNAV(strLINK, strFRAME) {}
