function search_news(){
	if ($("#sname").val() != ""){
		location.href = "search.html?wd="+encodeURI($("#sname").val());
	}
}

function GetThreeNews()
{
    msg = $.ajax({url:"InterFace/NewsMore.aspx?f=4", data:{}, async: false}).responseText;
    $("#ThreeNews").html(msg);
}

