var url = location.href;
var regx_1 = /^http:\/\/9822629.s31.sqnet.cn*/g;
var regx_2 = /^http:\/\/studychineseculture.com*/g;
if(regx_1.test(url))
{	//http://9822629.s31.sqnet.cn
	url = url.replace(/^http:\/\/9822629.s31.sqnet.cn/i, "http://www.studychineseculture.com");
	location.href = url;
	document.close();
}
if(regx_2.test(url))
{	//http://studychineseculture.com
	url = url.replace(/^http:\/\/studychineseculture.com/i, "http://www.studychineseculture.com");
	location.href = url;
	document.close();
}