function tb(pfad,top,bottom,space)
{
var np = '<img src="' + pfad + '/nopix.gif" alt=" " height="2" border="0">';
document.write('<p>');
if(top!=-1)
{
	document.write('<a href="#top" target="text" title="Seitenanfang"');
	if(space==1) document.write(' class="i600"');
	document.write('>');
	document.write('<span class="big link">&uarr;</span></a>');
//	document.write('<span class="link"><img src="' + pfad + '/ptop.gif" alt="Anfang" border="0"></span></a>');
}
else
{
	if(space==1 && bottom==-1)
		document.write(np);
}
if(bottom!=-1)
{
	document.write('<a href="#bottom" target="text" title="Seitenende"');
	if(space==1 && top==-1) document.write(' class="i600"');
	document.write('>');
	document.write('<span class="big f link">&darr;</span></a>');
//	document.write('<span class="link"><img src="' + pfad + '/pbot.gif" alt="Ende" border="0"></span></a>');
}
}

function setnavigateSym(pfad,top,prev,next,bottom,space)
{
var s1 = '" target="text"><span class="link"';
var s2 = '</span></a>';
document.write('<p>');
if(isNaN(space) == false)
	document.write('<img src="' + pfad + '/nopix.gif" width="' + space + '" height="1" border="0">');
if(top!=-1)
	document.write('<a href="#top' + s1 + ' title="Seitenanfang" alt="Anfang">&uarr;' + s2);
else
	document.write('&nbsp;&nbsp;');
if(prev!=-1)
	document.write('<a href="#top' + prev + s1 + ' title="vorheriger Artikel" alt="hoch">&larr;' + s2);
else
	document.write('&nbsp;&nbsp;&nbsp;&nbsp;');
if(next > 0)
	document.write('<a href="#top' + next + s1 + ' title="n&auml;chster Artikel" alt="runter">&rarr;' + s2);
else if(next == 0)
	document.write('<a href="#bottom' + s1 + ' title="Seitenende" alt="Ende">&darr;' + s2);
if(bottom!=-1)
	document.write('<a href="#bottom' + s1 + ' title="Seitenende" alt="Ende">&darr;' + s2);
}

function setnavigate(pfad,top,prev,next,bottom,space)
{
var s1 = '" target="text"><span class="link"><img src="';
var s2 = ' border="0"></span></a>';
var np = '<img src="' + pfad + '/nopix.gif" alt=" " height="1" border="0">';
document.write('<p>');
if(isNaN(space) == false)
	document.write('<img src="' + pfad + '/nopix.gif" width="' + space + '" height="1" border="0">');

if(top!=-1)
	document.write('<a href="#top' + s1 + pfad + '/ptop.gif" title="Seitenanfang" alt="Anfang"' + s2);
else
	document.write(np);
if(prev!=-1)
	document.write('<a href="#top' + prev + s1 + pfad + '/pprev.gif" title="vorheriger Artikel" alt="hoch"' + s2);
else
	document.write(np);
if(next > 0)
	document.write('<a href="#top' + next + s1 + pfad + '/pnext.gif" title="n&auml;chster Artikel" alt="runter"' + s2);
else if(next == 0)
	document.write('<a href="#bottom' + s1 + pfad + '/pnext.gif" title="Seitenende" alt="Ende"' + s2);
if(bottom!=-1)
	document.write('<a href="#bottom' + s1 + pfad + '/pbot.gif" title="Seitenende" alt="Ende"' + s2);
}

function setnavtop(pfad,space)
{
var s1 = '" target="text"><span class="link"><img src="';
var s2 = ' height="20" border="0"></span></a>';
if(isNaN(space) == false)
	document.write('<p><span style="margin-left:' + space + 'px; white-space:nowrap;">');
else
	document.write('<p><span style="margin-left:610px; white-space:nowrap;">');
document.write('<a href="#top" target="text" title="Seitenanfang"><span class="big link">&uarr;</span></a>');
//document.write('<a href="#top' + s1 + pfad + '/ptop.gif" width=16 height=16 title="Seitenanfang" alt="Anfang"' + s2 + '</span>');
}

