function goToList()
{
	var listUrl = "http://news.hunantv.com/jsh";
	var dayInMonth = [31,28,31,30,31,30,31,31,30,31,30,31];
	var selY = document.getElementById("selYear").value;
	var selM = document.getElementById("selMonth").value;
	var selD = document.getElementById("selDay").value;
	var toDay = new Date();
	var curY = toDay.getFullYear().toString();
	var curM = (toDay.getMonth() + 1) < 10 ? 0 + (toDay.getMonth() + 1).toString() : (toDay.getMonth() + 1).toString();
	var curD = toDay.getDate() < 10 ? 0 + toDay.getDate().toString() : toDay.getDate().toString();

	//alert(curD);
	if(selY>curY){
		alert('您选择的年份超过了范围！');
		return false;
	}else if(selY==curY && selM>curM){
		alert('您选择的月份超过了范围！');
		return false;
	}else if(selY==curY && selM==curM && selD>curD){
		alert('您选择的日期超过了范围！');
		return false;
	}else if(selY==curY && selM==curM && selD==curD){
		location.href = ""+listUrl+"/index.html";
	}else{
		location.href = ""+listUrl+"/"+selY+"/index_"+selY+"_"+selM+"_"+selD+".html";
	}
}