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; }
}
function mini_wk_hinzu(artikelnr, handrail, preis){
	//alert('Artikel: ' + artikelnr + ' Anzahl: ' + handrail.options[handrail.selectedIndex].value);
	xajax_mini_wk_hinzu_php(artikelnr, handrail.options[handrail.selectedIndex].value, preis);
	return false;
}
