//=======================================================================================
// AJAX Request Funktionen
//=======================================================================================
function AjaxRequest(uebergabeParameter,doOnSuccess,doOnSuccessParam)
	{
	with (new Ajax())
	        {
		url		= "/index.php";
		method		= "POST";
		params          = uebergabeParameter;
		onSuccess       = doOnSuccess;
		onSuccessParam  = doOnSuccessParam;
		onError 	= errorHandler;
		doRequest();
		}
	}

function errorHandler(msg)
	{
	alert("AJAX Error: "+msg);
	}
	
function getAnbieterInfo(anbieter,show_id)
	{
       	params          = "action=ajax&what=show_anbieter_info&anbieter="+anbieter+"&show_id="+show_id;
	AjaxRequest(params,showAnbieterInfo,show_id);
	}
	
function showAnbieterInfo(txt,show_id)
	{
	document.getElementById("anbieter_info_"+show_id).style.display = "block";
	document.getElementById("anbieter_info_"+show_id).innerHTML = txt;
	}

function closeAnbieterInfo(show_id)
	{
	document.getElementById("anbieter_info_"+show_id).style.display = "none";
	}
