
// ポイントラリー登録
//
// 【使い方】
// 
// あらかじめ以下を宣言
// <script type="text/javascript" src="/include/js/point_rally.js"></script> 
//
// ●ロード時の呼び方
//	<script type="text/javascript">
//	<!--
// 	Event.observe(window, "load", function(){
// 		RegistPointRally('31','1');
// 	});
// 	//-->
// 	</script>
//  
// ●クリックイベントなどでの利用
//  <input type="submit" id="next" name="next" value="次へ" onclick="RegistPointRally('31','2', '/challengerally/mission1/002.html'); return false;">
//  <input type="submit" id="next" name="next" value="次へ" onclick="RegistPointRally('31','2'); window.location.href='/challengerally/mission1/002.html'; return false;">
//
function RegistPointRally(point_type_id, page_number, url){
	var paramsObj = new Object;
	eval('paramsObj.point_type_id=\''+ point_type_id +'\'');
	eval('paramsObj.page_number=\''+ page_number +'\'');
	new Ajax.Request('/RegistPointRallyAjax.htm', {
		method:"post",
		asynchronous:false,
		parameters:paramsObj,
		onComplete:function(){
			if (url){
				//alert(url);
				window.location.href = url;
			}
		}
	});
}

