function search_bdo_members() {
	var options = $('bdo_member_search').serialize();
	new Ajax.Request("bdo_search_members.php", {
		method: 'post',
		parameters: options,
		onLoading: function () {
			$('search_bdo_results').innerHTML = 'Suche Mitglieder ...<img src="../images/indicator.gif" />';	
		},
		onComplete: function (t,json) {
			$('search_bdo_results').innerHTML = t.responseText;
		}
	});
}

function bdoMemberTab(id) {
	if ($('full_'+ id).style.display == 'none') {
		new Ajax.Request(
		"utils.bdomitglieder.php3?loadMembers="+ id +"",
		{
			method: 'get',
			onLoading: function () {
				$('full_'+id).show();
				$('full_'+ id).innerHTML = 'Lade Mitgliederdaten ... <img src="http://www.wein-plus.de/images/indicator.gif>';
			},
			onSuccess: function (transport, json) {
				$('full_'+ id).innerHTML = transport.responseText;
			}
		}
		);
		$('img_'+id).innerHTML = '<img src="../images/pfeil_runter.gif">';
	} else {
		$('full_'+id).hide();
		$('img_'+id).innerHTML = '<img src="../images/pfeil.gif">';
	}
}

function bdoSortMemberByRegion() {
	new Ajax.Request("utils.bdomitglieder.php3?sort=anbaugebiet&ajax",{
		method:'get',
		onLoading: function () {
			$('bdoMembers').innerHTML = 'Lade Anbaugebiete ... <img src="http://www.wein-plus.de/images/indicator.gif>';
		},
		onSuccess: function (t,json) {
			$('bdoMembers').innerHTML = t.responseText;
		}
	});
}

function bdoToggle(id) {
	if ($(''+ id +'').style.display == 'none') {
		$(''+ id +'').show();
	} else {
		$(''+ id +'').hide();
	}		
}

function bdoTip(mitnum) {
	new Ajax.Request("../utils/utils.bdo.php4?mitNum="+ mitnum,{
		method:'get',
		onLoading: Tip("Data loading ...<img src='../images/indicator.gif'>"),
		onComplete: function (t,json) {
			Tip(t.responseText, CLICKSTICKY, true, CLOSEBTN, true, FOLLOWMOUSE, false, TITLEBGCOLOR, '#CCCCCC', BORDERCOLOR, '#CCCCCC',FADEIN, 15);
		}
	});
}

function colorize(mitnum) {
	$(mitnum+'_r1').style.backgroundColor  = '#ffffff';
	$(mitnum+'_r2').style.backgroundColor  = '#ffffff';
	$(mitnum+'_r3').style.backgroundColor  = '#ffffff';
}

function uncolorize(mitnum) {
	$(mitnum+'_r1').style.backgroundColor  = '#EAE9E7';
	$(mitnum+'_r2').style.backgroundColor  = '#EAE9E7';
	$(mitnum+'_r3').style.backgroundColor  = '#EAE9E7';
}

function colorSR(id) {
	$(id+'_r1').style.backgroundColor  = '#EAE9E7';
	$(id+'_r2').style.backgroundColor  = '#EAE9E7';
	$(id+'_r3').style.backgroundColor  = '#EAE9E7';
	$(id+'_r4').style.backgroundColor  = '#EAE9E7';
}

function uncolorSR(id) {
	$(id+'_r1').style.backgroundColor  = '#ffffff';
	$(id+'_r2').style.backgroundColor  = '#ffffff';
	$(id+'_r3').style.backgroundColor  = '#ffffff';
	$(id+'_r4').style.backgroundColor  = '#ffffff';
}
