function showcity(obj)
{
	var locdiv=getElement("cityListDiv");

	if(locdiv.style.display=="block"){
		locdiv.style.display="none";
		return;
	}
	locdiv.style.display="block";
	var locs=locdiv.getElementsByTagName("li");
	for(var i=0;i<locs.length;i++)
	{
		var theloc=locs[i];
			theloc.onmouseover=function(){
				this.style.backgroundColor="#E0E5DF"
			}
			theloc.onmouseout=function(){
				this.style.backgroundColor="#E6F3C8"
			}
			theloc.onclick=function(){
				var locstr=this.innerHTML;
				if (locstr.indexOf(" ")!=-1) 
				locstr=locstr.substr(0,locstr.indexOf(" ")); //fixbug 在IE下多出一个空格
				SetCookie("NTES_LocNewsAddr",locstr,365);
				setLocNews(locstr);
				hideLocSelect();
				var l=getElement("locbar");
				loadAJAXTab(l.getAttribute("urn"),l.getAttribute("rel"));			
			}
	}
}
