﻿// JScript File

var xmlHttp = null;

function AjaxInit()
{
    // Mozilla, Opera, Safari sowie Internet Explorer 7
    if (typeof XMLHttpRequest != 'undefined') {
        xmlHttp = new XMLHttpRequest();
    }
    if (!xmlHttp) {
        // Internet Explorer 6 und älter
        try {
            xmlHttp  = new ActiveXObject("Msxml2.XMLHTTP");
        } catch(e) {
            try {
                xmlHttp  = new ActiveXObject("Microsoft.XMLHTTP");
            } catch(e) {
                xmlHttp  = null;
            }
        }
    }
}

function AjaxGetContent(Content)
{
    if (xmlHttp) {
        xmlHttp.open('GET', 'http://www.thebigeasy.de/ashx/getcontent.ashx?content=' + Content, false);
        xmlHttp.send(null);
        return (xmlHttp.responseText);
    }
    return ("AjaxGetContent Error");
}
