function initpage(page)
{
	var iH = screen.height;
	var iW = screen.width;
	var iC = screen.pixelDepth;
	var iR = document.referrer;
	var iI = window.location.search;
	var params = '?w='+iW+'&h='+iH+'&c='+iC+'&p='+page+'&r='+iR+'&i='+iI;
	var xmlHttp1 = false;
	filedbg(page);
	try {
    xmlHttp1  = new ActiveXObject("Msxml2.XMLHTTP");
	} 
	catch(e) {
	    try {
	        xmlHttp1  = new ActiveXObject("Microsoft.XMLHTTP");
	    } catch(e) {
	        xmlHttp1  = false;
	    }
		}
	// ... für Mozilla, Opera und Safari
	if (!xmlHttp1  && typeof XMLHttpRequest != 'undefined') {
		xmlHttp1 = new XMLHttpRequest();
	}
	if (xmlHttp1) 
	{
		xmlHttp1.open('GET', 'http://www.damdoo.de/track.php'+params, true);
	}
    xmlHttp1.send(null);
}

function filedbg(msg)
{
	var params = '?txt='+msg;
	var xmlHttp1 = false;
	try {
    xmlHttp1  = new ActiveXObject("Msxml2.XMLHTTP");
	} 
	catch(e) {
	    try {
	        xmlHttp1  = new ActiveXObject("Microsoft.XMLHTTP");
	    } catch(e) {
	        xmlHttp1  = false;
	    }
		}
	// ... für Mozilla, Opera und Safari
	if (!xmlHttp1  && typeof XMLHttpRequest != 'undefined') {
		xmlHttp1 = new XMLHttpRequest();
	}
	if (xmlHttp1) 
	{
		xmlHttp1.open('GET', 'http://www.damdoo.de/filedbg.php'+params, true);
	}
    xmlHttp1.send(null);
}
