function CityHandler(SelObj) {
	if(SelObj == "?¡§1?¡§¡è3?¡§oD")
	{
		GotoUrl="http://www.tq121.com.cn";
		window.open(GotoUrl);		
	}
	else
	{
		GotoUrl="index.php?city="+SelObj ;
		window.location.href=GotoUrl;
	}	
}

function MM_jumpMenu(targ,selObj,restore){ //v3.0
	eval(targ+".location='ctbg.asp?city="+selObj.options[selObj.selectedIndex].value+"'");
  	if (restore) selObj.selectedIndex=1;
}

function getCookies()
{
	var result;
	var start;
	var end;
	var names="userSelect=";
	var city;
	result=document.cookie;
	start=result.indexOf("userSelect");
	start=(start+names.length);
	end=result.indexOf(";",start);
	if(end==-1)
		end=result.length;
	city=result.substring(start,end);
	city=unescape(city);
	document.f.city.value=city;
	eval("this.location='index1_new.php?city="+city+"'");
}

function setCookies()
{
	var city;
	var check;
	var text;
	var obj;
	var date;
	obj=new Date();
	obj.setTime(obj.getTime()+365*24*60*60*1000);
	date=obj.toGMTString();
	city=document.f.city;
	check=document.f.checkbox;
	if(check.checked)
	{
		text="userSelect="+escape(city.value)+";expires="+date;
		document.cookie=text;
	}
}

function sf(){document.f.city.focus();document.f.city.select();}

function display()
{
	var theCookieName;
	theCookieName=document.cookie;
	if(theCookieName==""||theCookieName==null)
		return;
	else if(theCookieName.indexOf("userSelect=")==-1)
		return;
	else
		getCookies();
}
