				function AccessCounter(){
					this.xml_http=null;
				}
				AccessCounter.prototype={
					'getXMLHTTP':function(){
						var A=null;
						try{
							A=new ActiveXObject("Msxml2.XMLHTTP")
						}catch(e){
							try{
								A=new ActiveXObject("Microsoft.XMLHTTP")
							} catch(oc){
								A=null
							}
						}
						if(!A && typeof XMLHttpRequest != "undefined") {
							A=new XMLHttpRequest()
						}
						return A
					},
					'request_get':function(url){
						this.xmlHttp=this.getXMLHTTP();
						var _xmlHttp=this.xmlHttp;
						if(_xmlHttp){
							_xmlHttp.open('GET',url,true);
							_xmlHttp.send(null)
						}
					}
				}
				var access_counter=new AccessCounter;
				access_counter.request_get('/shop/ac.php?t=t&c=107&ref='+encodeURIComponent(document.referrer));
