/*  @xkshow 2010/02
 *   v1.0
 *   top js * values 
 */
 
function searchSel(num){
    var ns = "search_sel_"+num;
    document.getElementById("search").className = ns;
    document.getElementById("sel_one").value = num;
}

function showTopArea(){
	var p = document.getElementById("provinceT").options[document.getElementById("provinceT").options.selectedIndex].value;
	var c = document.getElementById("cityT").options[document.getElementById("cityT").options.selectedIndex].value;
 
	var str1 = encodeURIComponent(encodeURIComponent(p));   
	var str2 = encodeURIComponent(encodeURIComponent(c));  
	
	var urls = "av.shtml?action=search&title=&seqs=&sProvince="+str1+"&sCity="+str2+"&orderby=time&asc_desc=desc";
	window.location.href = urls;
	document.getElementById("showTopArea").style.display = "none";
}

function showTopAreaClick(){//show
	 //myEshowOff();
	 document.getElementById("showTopArea").style.display = "block";
	 document.getElementById("showTopArea").style.marginTop = document.body.scrollTop+30;
//	 alert(document.getElementById("showTopArea").style.marginTop);
}

function showTopOff(){
	 document.getElementById("showTopArea").style.display = "none";
}

function myEshowClick(){//show
	//showTopOff();
	document.getElementById("myEshow8").style.display = "block";
}

function myEshowOff(){
	 document.getElementById("myEshow8").style.display = "none";
}


