
function SchreibeTitel( titel )
{
	document.write( "<a name='top'> " ) ;
	document.write( "<table border='0' width='100%' height='50px'> " ) ;
	document.write( "<colgroup> " ) ;
	document.write( "<col width='50px'> " ) ;
	document.write( "<col> " ) ;
	document.write( "<col width='50px'> " ) ;
	document.write( "</colgroup> " ) ;
	document.write( "<tr height='50px'> " ) ;
	document.write( "<td><img id='logoLi' src='" + rootDir + "/images/logo_47.jpg' border='0' alt='LogoL' title='LogoLinks' align='middle'></td> " ) ;
	document.write( "<td class='headLine'>" + titel + "</td> " ) ;
	document.write( "<td><img id='logoRe' src='" + rootDir + "/images/logo_47.jpg' border='0' alt='LogoR' title='LogoRechts' align='middle'></td> " ) ;
	document.write( "</tr> " ) ;
	document.write( "</table> " ) ;
	document.write( "</a> " ) ;
} // Ende function SchreibeTitel

function SchreibeGoTopTrenner()
{
	document.write( "<table width='100%' border='0'> " ) ;
	document.write( "<colgroup><col width='45%'><col width='10%'><col width='45%'></colgroup> " ) ;
	document.write( "<tr> " ) ;
	document.write( "<td><hr></td> " ) ;
	document.write( "<td align='center' title='nach oben'> " ) ;
	document.write( "<a class='topLink' " ) ;
	document.write( "onmouseover='this.style.backgroundColor=\"lightgrey\"' " ) ;
	document.write( "onmouseout='this.style.backgroundColor=\"transparent\"' " ) ;
	document.write( "href='#top'> " ) ;
	document.write( "<img src='" + rootDir + "/images/buttons/pfeil_hoch3.gif' border='0'> " ) ;
	document.write( "</a> " ) ;
	document.write( "</td> " ) ;
	document.write( "<td><hr></td> " ) ;
	document.write( "</tr> " ) ;
	document.write( "</table> " ) ;
	
} // Ende function SchreibeGoTopTrenner

function SeiteLaden( myAdr, myTitel )
{
	fenster = window.open( myAdr, myTitel ) ;
}

