// JavaScript Document

function set_rss(path,element_id)
{

	//AJAXファイルを指定
	ajax_file_path 	= path;

	parameter = "";
	
	new Ajax.Request(
			ajax_file_path,
			{
				method			:'post',
				asynchronous	:true,
				postBody		:parameter,
				onComplete		:function(httpObject){
					
					//指定ページを表示
					$(element_id).innerHTML	= httpObject.responseText;
				},
				onFailure		:function(reg,header){
					

				}
			}
	);
	

}

