window.focus();

function del_freesite(id) {
	if(confirm('Moechten sie die FreeSite wirklich loeschen?\nEs erfolgt keine weitere Sicherheitsabfrage!')){
	location.href='partner-freesites.php?f=del&id='+id+'';
	}
}

function del_kontakt(id,bla) {
	if(confirm('Moechten sie den ausgewaehlten Eintrag aus dem Adressbuch entfernen?\nDer Adressbucheintrag wird ohne weitere Nachfrage geloescht!')){
	location.href='partner-kontakte.php?show=del&id='+id+'&display='+bla+'';
	}
}

var xmlHttpObject = false;

if (typeof XMLHttpRequest != 'undefined') 
{
    xmlHttpObject = new XMLHttpRequest();
}
if (!xmlHttpObject) 
{
    try 
    {
        xmlHttpObject = new ActiveXObject("Msxml2.XMLHTTP");
    }
    catch(e) 
    {
        try 
        {
            xmlHttpObject = new ActiveXObject("Microsoft.XMLHTTP");
        }
        catch(e) 
        {
            xmlHttpObject = null;
        }
    }
}

function loadContent(wert1,wert2)
{
    xmlHttpObject.open('get','hilfe.php?show='+wert1+'&why='+wert2+'');
    xmlHttpObject.onreadystatechange = handleContent;
    xmlHttpObject.send(null);
    return false;
}

function handleContent()
{
    if (xmlHttpObject.readyState == 4)
    {
        document.getElementById('myContent').innerHTML = xmlHttpObject.responseText;
    }
}