function getHostName(){ 
	var url = window.location.href;
	var p1=/http:\/\/(\w+)\.3d.41go\.cn/;
	var result=p1.test(url)
	return RegExp.$1;
}