function fncgetref(stcode){
	//alert(document.referrer);
	refstr=document.referrer;
	if(refstr != ''){
		refstr = fncmakedomain(refstr);
		//alert(refstr);
		myImgOut  = new Image();
		srcstr = "http://at-cube.com/index.php/module/Potal/action/RefCount/Site/" + stcode + "/Ref/" + refstr;
		//alert(srcstr);
		myImgOut.src  = srcstr;
	}

}

function fncmakedomain(urlstr){
	//alert(urlstr);
	var refstr = urlstr.replace(/http:\/\//,'');
	//alert(refstr);
	refstr = refstr.replace(/\/.+/,'');
	//alert(refstr);
	return refstr;
}

