/**
 * パスワード再送信
 */
function remainder() {
	
	// メールアドレス確認
	var mail = document.getElementById('sendmail').value;

	n = mail.length;
	
	if( n == 0 ) {
		
		alert( "メールアドレス入力してください" );

		return false;
	}
	
	// 
	var params = "&mail=" + mail; 
	
	new Ajax.Updater(
	
		{ success : "send_message" },
		'?module=Default&action=Remainder',
		{
			asynchronous   : true,
			requestHeaders : ["Content-Type", "application/x-www-form-urlencoded; charset=Shift_JIS"],
			postBody       : params,
			onLoading : setLoginLoading,
			onFailure : setLoginError
		}
	);
}

/**
 * 失敗時処理
 *
 */
function setLoginLoading() {

	
}
/**
 * 失敗時処理
 *
 */
function setLoginError() {

	alert( "エラーが発生しました" );
}
