function analyse() {

	var xmlhttp = null;
    // Mozilla
    if (window.XMLHttpRequest) {
        xmlhttp = new XMLHttpRequest();
    }
    // IE
    else if (window.ActiveXObject) {
        xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
    }
   var params=document.URL.split("?")[1];
   if(!params) {
   params = " ";
   }
    xmlhttp.open("GET", 'twisalizer/input.php?x='+screen.width+'&y='+screen.height+'&link='+escape(params), true);
    xmlhttp.onreadystatechange = function() {
        if(xmlhttp.readyState != 4) {
        }
        if(xmlhttp.readyState == 4 && xmlhttp.status == 200) {
        }
    }
    xmlhttp.send(null);

}
window.onload=function() {
analyse();
}