function WinOpen(seite){
window.open(seite,"","toolbar=no,status=no,width=600,height=600,scrollbars=no");
}
function WinOpenScroll(seite){
window.open(seite,"","toolbar=no,status=no,width=600,height=600,scrollbars=yes");
}

function MouseOver( tableCellRef, hoverFlag, navStyle , event_color ) 
{
	var MouseOver_color_tmp = "";
	var Table_Cell_MouseOut_color_tmp = "";

	if ( hoverFlag ) 
	{
	if (event_color) 
		{ 
		MouseOver_color_tmp = event_color; 
		} else { 
		try {
				if ( eval('MouseOver_color.'+navStyle) != undefined ) {
					MouseOver_color_tmp = eval('MouseOver_color.'+navStyle);
				} else {
				MouseOver_color_tmp = MouseOver_color.def;
				}
			} catch(exception) {
		  }
		}
		if (MouseOver_color_tmp) 
				{ 
				Table_Cell_MouseOut_color_self_style = tableCellRef.style.backgroundColor;
				tableCellRef.style.backgroundColor = MouseOver_color_tmp; 
				}

	} else {
	if (event_color) 
		{ 
		Table_Cell_MouseOut_color_tmp = event_color; 
		} else { 
	if (Table_Cell_MouseOut_color_self_style) { 
			tableCellRef.style.backgroundColor = Table_Cell_MouseOut_color_self_style; }
		try {
				if ( eval('Table_Cell_MouseOut_color.'+navStyle) != "undefined" ) {
					Table_Cell_MouseOut_color_tmp = eval('Table_Cell_MouseOut_color.'+navStyle);
				} else {
				Table_Cell_MouseOut_color_tmp = Table_Cell_MouseOut_color.def;
				}
			} catch(exception) {
			}
		}
		if (Table_Cell_MouseOut_color_tmp) 
				{ tableCellRef.style.backgroundColor = Table_Cell_MouseOut_color_tmp; }
		}
}
