function naptar(ts) {
    //document.location = '/news/naptar?ts=' + ts;
    $.ajax({
	url: "/news/naptar",
	cache: false,
	type: "GET",
	data: "ts=" + ts,
	success: function(html){
	    $("#naptar_mblock").html(html);
	}
    });
}