
function stathouse(ioid,ipid) {

	document.cookie = "testCookie=testi";
	if (document.cookie.length > 0)
  		var ac = '1';
	else
  		var ac = '0';

	var sid = '1', pid = ipid, oid = ioid;


	var imgsrc = '<img src=\"http://stathouse.steerco.fi/sp/sp.aspx?r='
	//var imgsrc = '<img src=\"http://shebekki/sp/sp.aspx?r='	

	   + escape(document.referrer) + '&p=' + escape(location.href)
	   + '&sid=' + sid + '&oid=' + oid + '&pid=' + pid 
	   + '&ac=' + ac 
	   + '\" width=\"1\" height=\"1\" alt=\"\" />';

	document.write(imgsrc);

	return imgsrc;
}












