<!--

// Rollover für Tabellenzellen
function rollover(LinkObject)	{
	LinkObject.style.color='#333333';
	LinkObject.style.fontWeight='normal';
	LinkObject.style.background='#D0D2D4';
	LinkObject.style.border='solid';
	LinkObject.style.borderWidth='0px';
	LinkObject.style.borderColor='rgb(222,255,255)';
}

function normal(LinkObject)	{
	LinkObject.style.color='#333333';
	LinkObject.style.fontWeight='normal';	
	LinkObject.style.background='#808284';
	LinkObject.style.border='solid';
	LinkObject.style.borderWidth='0px';
	LinkObject.style.borderColor='rgb(227,228,227)';
}

function Hyperlink(theURL,winName,targetName) { 
eval(winName+"=window.open('"+theURL+"','"+targetName+"')")
}


//-->
