	var mappletConfig={ll:"34.96478,105.08019",zm:4,configGroup:"PlaceCn"};
	mappletConfig.onInit=function()
	{
		this.initMiniWins();
		var centerPoint,zoom,points=[];
		var titleDiv=document.getElementById("titleDiv");
		centerPoint=titleDiv.getAttribute("ll").split('O');
		zoom=Math.min(5+titleDiv.getAttribute("grade")*2,16);
		points.push(centerPoint);
		var childDiv=document.getElementById("childLinkDiv");
		if(childDiv)
		{
			var icon={src:window.mappletUrl+"img/icon/place.png",size:[16,16],anchor:[8,16]};
			for(var child=childDiv.firstChild;child!=null;child=child.nextSibling)
			{
				if(child.className!="childPlace"){continue;}
				var ll=child.getAttribute("ll").split('O');
				points.push(ll);
				this.getMap().addMarker({ll:ll,name:child.firstChild.innerHTML,url:child.firstChild.href,icon:icon});
			}
		}
		this.getMap().getBestMap(points);
		this.getMap().addMarker({ll:centerPoint,exact:true,name:document.getElementById("titleDiv").innerHTML,icon:{src:window.mappletUrl+"img/icon/center.png",size:[32,32],anchor:[16,16]}});
		var newskeyword=titleDiv.getAttribute("newskeyword");
		if(newskeyword)
		{
			mappletConfig.newskeyword=newskeyword;
			this.loadApplet("K_NewsControl");
		}
		//this.loadApplet("K_WallGadgetControl");
	}
