﻿function dataLoding(filename){

	new Ajax.Request(filename, {
		method : 'get',
		onSuccess : function(response)  {
			$('result').innerHTML=response.responseText;
		},
		onFailure : function( transport )  {
			alert('ロード失敗orz');
		}
	} );
}