function SearchNews() {
   //var cid = document.getElementById("ddlC").value;
   var y1 = document.getElementById("ddlStartYear").value;
   var m1 = document.getElementById("ddlStartMonth").value;
   var y2 = document.getElementById("ddlEndYear").value;
   var m2 = document.getElementById("ddlEndMonth").value;
   var cid = document.getElementById("hidcid").value;   
   //var _sort= document.getElementById("ddlSort").value;
   //var m2 = document.getElementById("ddlmonth2").value;
	  
	window.location.href='news.aspx?y1='+encodeURI(y1)+'&m1='+encodeURI(m1)+'&y2='+encodeURI(y2)+'&m2='+encodeURI(m2)+'&cid='+encodeURI(cid);
}
function SearchKeyWord() {
   var key = document.getElementById("txtKeyWord").value;
   var cid = document.getElementById("hidcid").value;
	  window.location.href='news.aspx?key='+encodeURI(key)+'&cid='+encodeURI(cid);
	//window.location.href='news.aspx?y1='+encodeURI(y1)+'&m1='+encodeURI(m1)+'&y2='+encodeURI(y2)+'&m2='+encodeURI(m2)+'&kw=';
}
