function buxRedirect(page, loc) {
	var rules = getCookie('WWW_RULES');
	var re = new RegExp("\\bbux_"+page+"\\b");
	if ( rules && rules.match(re) ) {
		if ( !loc ) {
			loc = "/c/" + page + ".html";
		}
		if ( window.location.hash ) {
			loc += window.location.hash;
		}
		window.location = loc;
	}
}