// JavaScript Document
function test(){
	alert(11);
}
// ÇÐ»»ËÑË÷·½Ê½
function search_method(option){
	debugger;
	oInput = document.getElementsByName("cx")[0];
	if( option == 0 ){				// ÌØÉ«ËÑË÷
		oInput.value = "005309361054297553913:h99e59prwzi";
	}
	else{							// Õ¾ÄÚËÑË÷
		oInput.value = "005309361054297553913:pohrgnubd9u";
	}
}
// ÇÐ»»tab
function tabto(option){
	debugger;
	var oTodayTd = document.getElementById ("todaytd");
	var oToweekTd = document.getElementById("toweektd");
	var oTomonthTd = document.getElementById("tomonthtd");
	var oTodayDiv = document.getElementById ("today");
	var oToweekDiv = document.getElementById("toweek");
	var oTomonthDiv = document.getElementById("tomonth");
	switch (option)
	{
		case 0:
			oTodayTd.className = "yellow12b";
			oTodayTd.style.background = "url(images/index_r4_c3.jpg)";
			oToweekTd.className = "gray12b";
			oToweekTd.style.background = "url(images/index_r4_c4.jpg)";
			oTomonthTd.className = "gray12b";
			oTomonthTd.style.background = "url(images/index_r4_c4.jpg)";
			
			oTodayTd.children[0].className = "yellow12b";
			oToweekTd.children[0].className = "gray12b";
			oTomonthTd.children[0].className = "gray12b";
			
			oTodayDiv.style.display = "block";
			oToweekDiv.style.display = "none";
			oTomonthDiv.style.display = "none";
			break;
		case 1:
			oTodayTd.className = "gray12b";
			oTodayTd.style.background = "url(images/index_r4_c4.jpg)";
			oToweekTd.className = "yellow12b";
			oToweekTd.style.background = "url(images/index_r4_c3.jpg)";
			oTomonthTd.className = "gray12b"
			oTomonthTd.style.background = "url(images/index_r4_c4.jpg)";
			
			oTodayTd.children[0].className = "gray12b";
			oToweekTd.children[0].className = "yellow12b";
			oTomonthTd.children[0].className = "gray12b";
			
			oTodayDiv.style.display = "none";
			oToweekDiv.style.display = "block";
			oTomonthDiv.style.display = "none";
			break;
		case 2:
			oTodayTd.className = "gray12b";
			oTodayTd.style.background = "url(images/index_r4_c4.jpg)";
			oToweekTd.className = "gray12b";
			oToweekTd.style.background = "url(images/index_r4_c4.jpg)";
			oTomonthTd.className = "yellow12b"
			oTomonthTd.style.background = "url(images/index_r4_c3.jpg)";
			
			oTodayTd.children[0].className = "gray12b";
			oToweekTd.children[0].className = "gray12b";
			oTomonthTd.children[0].className = "yellow12b";
		
			oTodayDiv.style.display = "none";
			oToweekDiv.style.display = "none";
			oTomonthDiv.style.display = "block";
			break;
		default:
			break;
	}
}