// Ajax Chat

// globale Instanz von XMLHttpRequest
var xmlHttp = false;

// XMLHttpRequest-Instanz erstellen
// ... für Internet Explorer
try {
    xmlHttp  = new ActiveXObject("Msxml2.XMLHTTP");
} catch(e) {
    try {
        xmlHttp  = new ActiveXObject("Microsoft.XMLHTTP");
    } catch(e) {
        xmlHttp  = false;
    }
}
// ... für Mozilla, Opera und Safari
if (!xmlHttp  && typeof XMLHttpRequest != 'undefined') {
    xmlHttp = new XMLHttpRequest();
}

function loadFastMsg()
{
	if (xmlHttp) {
		xmlHttp.open('GET', 'http://www.network-gaming-clan.de/asphyxiated_dreams3/page_modules/save_fast_msg.php', true);
		xmlHttp.onreadystatechange = function () {
			if (xmlHttp.readyState == 4) {
				document.getElementById("save_fast_msg").innerHTML = xmlHttp.responseText;
			}
		};
		xmlHttp.send(null);
	}
	alert(xmlHttp.onreadystatechange);
}
