document.write("<div id=\"tips_\" style=\"display:none;\"></div>");
document.write("<style>");
document.write("#tips_ {z-index:902;width: 398px;border: 2px solid #80BAEC;position: absolute;}");
document.write("#tips_ .title {background-image: url(/images/tit_dialog.gif);height: 28px;line-height: 28px;}");
document.write("#tips_ .title img {margin-top: 5px;margin-bottom: -5px;float: right;margin-right: 5px;cursor:pointer;}");
document.write("#tips_ .title span {margin-top: 5px;font-weight: bold;}");
document.write("#tips_ .title span {margin: 5px;}");
document.write("#tips_ .body {background-image: url(/images/bg_dialog12.gif);height: 120px;}");
document.write("#tips_ a:hover {color:#F00;}")
document.write("#tips_ td {}")
document.write("</style>");
d2 = {
	obj : null,
	init : function(){
		var tips_i = '\
		<div class="title"><img src="/images/dialogClose0.gif" onclick="d2.h()" /><span>切換其他地區</span></div>\
		<div class="body"><br />\
		<table align="center" cellspacing="12">\
		  <tr>\
			<td><b><a href="http://www.058.com.tw/">北區首頁</a></b></td>\
			<td><a href="http://www.058.com.tw/city1.htm">台北市</a></td>\
			<td><a href="http://www.058.com.tw/city2.htm">台北縣</a></td>\
			<td><a href="http://www.058.com.tw/city3.htm">桃園</a></td>\
			<td><a href="http://www.058.com.tw/city4.htm">新竹</a></td>\
			<td><a href="http://www.058.com.tw/city5.htm">苗粟</a></td>\
			<td><a href="http://www.058.com.tw/city6.htm">基隆</a></td>\
			<td><a href="http://www.058.com.tw/city7.htm">宜蘭</a></td>\
		  </tr>\
		  <tr>\
			<td><b><a href="http://www.058.net.tw/">中區首頁</a></b></td>\
			<td><a href="http://www.058.net.tw/city1.htm">台中市</a></td>\
			<td><a href="http://www.058.net.tw/city2.htm">台中縣</a></td>\
			<td><a href="http://www.058.net.tw/city3.htm">彰化</a></td>\
			<td><a href="http://www.058.net.tw/city4.htm">南投</a></td>\
			<td><a href="http://www.058.net.tw/city5.htm">雲林</a></td>\
			<td><a href="http://www.058.net.tw/city6.htm">花蓮</a></td>\
			<td>&nbsp;</td>\
		  </tr>\
		  <tr>\
			<td><b><a href="http://www.058.org.tw/">南區首頁</a></b></td>\
			<td><a href="http://www.058.org.tw/city1.htm">高雄市</a></td>\
			<td><a href="http://www.058.org.tw/city2.htm">高雄縣</a></td>\
			<td><a href="http://www.058.org.tw/city3.htm">台南</a></td>\
			<td><a href="http://www.058.org.tw/city4.htm">嘉義</a></td>\
			<td><a href="http://www.058.org.tw/city5.htm">屏東</a></td>\
			<td><a href="http://www.058.org.tw/city6.htm">台東</a></td>\
			<td>&nbsp;</td>\
		  </tr>\
		</table><br />\
		</div>';
		this.obj = document.getElementById("tips_");
		this.obj.innerHTML = tips_i;
		var subarea = document.getElementById("subarea");
		var top = document.getElementById("h1").parentElement;
		subarea.style.cssText = "background-color: #000;filter: alpha(opacity=60);position: absolute;z-index:901;height: "+top.clientHeight+"px;width: "+top.clientWidth+"px;display:block;";
	},
	create : function(){
		if (this.obj==null){
			this.init();	
		}
		with (this.obj){
			style.display = "block";
			style.posLeft = (document.documentElement.clientWidth-clientWidth)/2;style.posTop  = (document.documentElement.clientHeight-clientHeight)*(1-0.618);
		}
		var subarea = document.getElementById("subarea");
		subarea.style.display = "block";
	},
	h : function(){
		with (this.obj){
			style.display = "none";
		}
		var subarea = document.getElementById("subarea");
		subarea.style.display = "none";
	}
}