toggle = 0

function b(width,height,col) 
{
	document.write('<td class=b');
	if (width > 0)
		document.write(' width=' +width );
	if (height > 0)
		document.write(' height=' +height );
	if (col > 0)
		document.write(' colspan=' +col );
	document.write('><img src="img/1.gif" height=' +( (height > 0) ? height : 1 )+ ' width=' +( (width > 0) ? width : 1 )+ ' border=0></td>');
}

function e(width,height,col) 
{
	document.write('<td');
	if (width > 0)
		document.write(' width=' +width );
	if (height > 0)
		document.write(' height=' +height );
	if (col > 0)
		document.write(' colspan=' +col );
	document.write('><img src="img/1.gif" height=' +( (height > 0) ? height : 1 )+ ' width=' +( (width > 0) ? width : 1 )+ ' border=0></td>');
}

function info(id, titel, date, quelle)
{
	t=
	'<tr class=bglist' +toggle+ '>'+
	'<td><a href="index.php?content=info&info=' +id+ '">' +titel+ '</a></td>'+
	'<td></td>'+
	'<td class=n1>' +date+ '</td>'+
	'<td></td>'+
	'<td class=n1>' +quelle+ '</td>'+
	'<td></td>'+
	'</tr>'
	document.writeln(t)
	toggle = 1-toggle
}


function link_header(text)
{
	t=
	'<tr class=hd1>'+
	'<td>&nbsp;</td>'+
	'<td>' +text+ '</td>'+
	'<td>&nbsp;</td>'+
	'</tr>'
	document.writeln(t)
	toggle = 0
}

function link(text, url)
{
	t=
	'<tr class=bglist' +toggle+ '>'+
	'<td></td>'+
	'<td align=right><nobr><a href="' +url+ '" target=_blank>' +text+ '</a></nobr></td>'+
	'<td></td>'+
	'</tr>'
	document.writeln(t)
	toggle = 1-toggle
}
