//輸入框
function inputtxtonclick(){
	var seachid = document.getElementById("seachid");  
	var v=seachid.value;
	if(v=="")seachid.value = "搜尋該月份";
	else if(v=="搜尋該月份")seachid.value = "";
}