function AjaxLoad(){
	var a = "touroku";
	var p = "process";
	$(p).innerHTML = "<img src='http://news02.net/mag/images/indicator.gif' />"+"<br>処理中";
	setTimeout(
			   function reg_mail(){
					var b = new Ajax.Updater(
						a,
						"http://news02.net/mag/exec_mag.php",
						{
							"method": "post",
							"parameters": Form.serialize('form_mag'),
							onSuccess: function(request) {
								//alert('読み込みに成功しました');
								$(a).innerHTML = objHttpRequest.responseText;
							},
							onComplete: function(request) {
							},
							onFailure: function(request) {
								//alert('読み込みに失敗しました');
							},
							onException: function (request) {
								//alert('読み込み中にエラーが発生しました');
							}
						}
					);
				},2000
			   );
}
