function page_rss(id) {
	var url = "process.do?method=getSomeRss&id="+id+"";
	ajaxRequest(url, show1);
}	

function show1(){
	if(xmlHttp.readyState==4 || xmlHttp.readyState=="complete"){
	    if(xmlHttp.responseText!=null){
	      document.getElementById("show_pubrss").innerHTML=xmlHttp.responseText;
	      if(document.getElementById('if1'))
	     	 document.getElementById('if1').src="public/pagination.jsp?pagination=PAGENITION_TEST";
	    }
  	} 
}