function sendeBrowserInfos(p,nr)
{   
	var bi_be="abc";

	var inhalt=(p?p:bi_be);
	if(!inhalt)inhalt = "no_content";
	var bi_uri   = location.protocol+"//www.tetti.de/bi.pl?p=n"+nr+",";  
	var bi_cinfo = escape(inhalt)+",1,";

	var iWidth,iHeight;
	if ( window.innerHeight ){ // all except Explorer
		iWidth  = window.innerWidth;
		iHeight = window.innerHeight;
	}
	else if ( document.documentElement && document.documentElement.clientHeight ){
		// Explorer 6 strict mode
		iWidth  = document.documentElement.clientWidth;
		iHeight = document.documentElement.clientHeight;
	}
	else if ( document.body ){ // other Explorers
		iWidth  = document.body.clientWidth;
		iHeight = document.body.clientHeight;
	}

    bi_cinfo += screen.width+"x"+screen.height+"("+iWidth+"x"+iHeight+"),"+(navigator.appName!='Netscape'?screen.colorDepth:screen.pixelDepth)+",";
    bi_cinfo += ((navigator.cookieEnabled==true)?"1,":((navigator.cookieEnabled==false)?"0,":((document.cookie.indexOf("=")!=-1)?"1,":"0,")));
    bi_cinfo += new Date().getTime()+",";
    bi_cinfo += ((document.referrer.length>0)? escape(document.referrer):"0")+",0";
    if(document.images){
        bi_image     = new Image();
        bi_image.src = bi_uri+bi_cinfo;
    }
}

