if (window.XMLHttpRequest)
{
	xmlhttp = new XMLHttpRequest();
}
else if (window.ActiveXObject)
{
	try
	{
		xmlhttp = new ActiveXObject("Msxml2.XMLHTTP");
	}
	catch (ex)
	{
		try
		{
			xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
		}
		catch (ex) {}
	}
}

function oeffneSuchmaske(Adresse){
  	suchmaske = window.open("suchmaske.php", "Suchmaske", 
  							"width=400,height=400,left=6000,top=100,dependent=yes,resizable=yes");
  	suchmaske.focus();
}

function ausgabe(){
	if (xmlhttp.readyState == 4){
		UnTip();
		Tip(xmlhttp.responseText);
	}		
}

function info(id){
	Tip("<img src='load.gif'/>",BORDERWIDTH, 0, CLOSEBTN, false, SHADOW, false);
	adresse = "info.php?id=";
	xmlhttp.open("GET", adresse.concat(id));
	xmlhttp.onreadystatechange = ausgabe;
	xmlhttp.send(null);
}

