function RedirectToMainDomain(page){  
	var sURL = location.href;
	var the_url = sURL;
	var lead_slashes = the_url.indexOf("//");
	var domain_start = lead_slashes + 2;
	var without_resource = the_url.substring(domain_start, the_url.length);
	var next_slash = without_resource.indexOf("/");
	var domain = without_resource.substring(0, next_slash);

	if(domain != 'www.stuffbak.com' && domain != 'localhost'){
		window.location="http://www.stuffbak.com/sb/" + page + location.search;
	}
}