function loadWinzer(listDomID, regionID, typID) {
	new Ajax.Request('ajax/index.php', {
		asynchronous: true,
		evalScripts: true,
		method: 'get',
		parameters: {func: 'winzer', region: regionID, typ: typID},
		onComplete: function(request) {	
			var json = eval("("+ request.responseText +")");
			$(listDomID).update(json['content']);
			Effect.toggle(listDomID, 'blind', { duration: 0.2 });
		}
	}
);}

function loadWinzerEU(listDomID, regionID) {
	new Ajax.Request('ajax/index.php', {
		asynchronous: true,
		evalScripts: true,
		method: 'get',
		parameters: {func: 'winzerEU', region: regionID},
		onComplete: function(request) {	
			var json = eval("("+ request.responseText +")");
			$(listDomID).update(json['content']);
			Effect.toggle(listDomID, 'blind', { duration: 0.2 });
		}
	}
);}

function loadWeine(listDomID, regionID, winzerID, typID) {
	new Ajax.Request('ajax/index.php', {
		asynchronous: true,
		evalScripts: true,
		method: 'get',
		parameters: {func: 'weine', region: regionID, winzer: winzerID, typ: typID},
		onComplete: function(request) {
			var json = eval("("+ request.responseText +")");
			$(listDomID).update(json['content']);			
			initialize();
			Effect.toggle(listDomID, 'blind', { duration: 0.2 });
		}
	}
);}

function loadWeineEU(listDomID, regionID, winzerID) {
	new Ajax.Request('ajax/index.php', {
		asynchronous: true,
		evalScripts: true,
		method: 'get',
		parameters: {func: 'weineEU', region: regionID, winzer: winzerID},
		onComplete: function(request) {
			var json = eval("("+ request.responseText +")");
			$(listDomID).update(json['content']);			
			Effect.toggle(listDomID, 'blind', { duration: 0.2 });
		}
	}
);}

function showSortiment() {
	Effect.toggle('sortiment', 'blind', { duration: 0.2 });
}
