
// JavaScript Document
function logme(from) {
	var http = null ;
if (typeof XMLHttpRequest != 'undefined') { 
      http = new XMLHttpRequest();
}
if (!http) {
 // Internet Explorer 6 und älter
 try { http = new ActiveXObject("Msxml2.XMLHTTP");
 } catch(e) {
 try { 
http = new ActiveXObject("Microsoft.XMLHTTP"); 
} catch(e) { 
http = null; 
} 
}
 } 

	http.open("GET", "logme.php?from=" + from, true);
	http.send(null);
}



