<!--

function initStat() {
	
	var statSrc = pWA + "redaktion/dia/st/register.php?strg=" + strg + "&baseID=" + baseID + "&PHPSESSID=" + sid + "&language=" + language + "&view=" + view + "&js=1";
	var sW = screen.width;
	var sH = screen.height;
	var refer = escape(document.referrer.toString());
	
	statSrc += "&flash=" + actualVersion;
	(sW && sH) ? statSrc += "&screen=" + sW + "x" + sH : statSrc += "&screen=false";
	(refer) ? statSrc += "&referer=" + refer : statSrc += "&referer=false";
	
//	Debug-Mode
//	window.open(statSrc,'_popup','width=1,height=1');
	document.write('<img id="initStatImg" src="' + statSrc + '" width="1" height="1" border="0" alt="" style="position: absolute; top: -100; left: -100;" />');

	if (true === _refresh) {
		setTimeout("init_refresh()", 1000);
	}
}

function init_refresh() {
	window.location.href = query_string + "&PHPSESSID=" + sid;
}

initStat();
//-->