
function make_new_xmlHttp_Object()
{

	var xmlHttp = false;

	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();
	}
	return xmlHttp;
}


//Script zum Verhindern von Markierungen auf der Seite



function disableselect(e){
return false
}
function reEnable(){
return true
}
