function Show()
{
	var theform;
	if (window.navigator.appName.toLowerCase().indexOf("microsoft") > -1) {
		theform = document.Form1;
	}
	else {
		theform = document.forms["Form1"];
	}
	
		
	var art = theform.Suchleiste_DropDownListArt.value;
	var id = '';
	if (art=='5')
	{
		id=theform.Suchleiste_TextBoxSeminarNummer.value;
		location.href = 'seminar.aspx?art='+art+'&id='+id;
	}
	else
	{
		id=theform.Suchleiste_DropdownlistAuswahl.value;
		location.href = 'seminaruebersicht.aspx?art='+art+'&id='+id;					
	}
}