if(get_cookie('isSpb')!=null){
	var c = get_cookie('isSpb');
	var loca=document.location.href;
	var str=loca.substr(7,3);
	loca=loca.replace(/^http:\/\/hosting.rbc.ru/, 'http://hc.ru');
	loca=loca.replace(/^http:\/\/www.hc.ru/, 'http://hc.ru');
	if(c=='true'){
		if(str!='spb' && str!='tes'){
			document.location.href=loca.replace(/^http:\/\//, 'http://spb.');
			window.status = loca;
		}
	} else if(c=='false'){
		if(str=='spb' && str!='tes'){
			document.location.href=loca.replace(/^http:\/\/spb\./, 'http://');
			window.status = loca;
		}
	}
}