<!--
function Topic( form )
{
	window.location = form.topsearch.options[ form.topsearch.selectedIndex ].value;
}

function ShowImage( name, width, height )
{
	var picture = '<img src="' + name + '" border="0" width="' + width + '" height="' + height + '" />';

	var title = 'Gallery';
	
	settings = 'width=' + width + ',' + 'height=' + height + ',scrollbars=no,menubar=no,status=no,resizeable=no,top=25%,left=15%';
	
	win = window.open( '', '', settings );

	win.document.writeln( '<html>' );
	win.document.writeln( '<head>' );
	win.document.writeln( '<title>' + title + '</title>' );
	win.document.writeln( '</head>' );
	win.document.writeln( '<body leftmargin="0" topmargin="0">' );
	win.document.writeln( picture );
	win.document.writeln( '</body>' );
	win.document.writeln( '</html>' );
}

function ShowItem( data )
{
	var tmp = '';
	for( k=0; k<data.length; tmp+=unescape( '%'+data.substr( k, 2 ) ), k+=2 );
	data = '';
	for( k=0; k<tmp.length; data+=( tmp.charAt( k+1 )+tmp.charAt( k ) ), k+=2 );
	document.write( data );
}

function Toggle( form )
{
	if( form.query.value == '' )
	{
		alert( 'Bitte geben Sie einen Suchbegriff ein!' );
		form.query.focus();
		return( false );
	}

	if( form.mode.value == 'external' )
	{
		form.target = '_blank';
	}
	else
	{
		form.target = '_self';
	}
}

-->
