function chk_produktsuche(){
	if((document.frm_produktsuche.query.value == "") || (document.frm_produktsuche.query.value == "Produktsuche...")){ return false; }
}
// Funktion um Meldungen anzuzeigen
function show_item(item){
  document.getElementById(item).style.display = 'block';
}
// Funktionen um Meldungen auszublenden
function hide_item(item){
  document.getElementById(item).style.display = 'none';
}
// Mittelgrosses Popup
function popup_mittel(url){
	args = 'width=500,height=500,resizable,scrollbars';
	ok = window.open(url,'',args);
	// Überprüfen, ob das Popup geöffnet werden konnte
	if(ok){ return false; } else { return true; }
}