/*------------------------------------
メールマガジン登録・解除用ファンクション
------------------------------------*/
//登録ファンクション
function mailReg(_form){
	//送信先の指定
	_url = "https://regssl.combzmail.jp/adddel.cgi";
	//ウィンドウのポップアップと書き込み
	_w = window.open("about:blank","regWin","width=547,height=294");
	_w.document.open();
	_w.document.write("<form name=\"myForm\" method=\"post\" action=\""+_url+"\">");
	_w.document.write("<input type=\"hidden\" name=\"mode\" value=\"add\">");
	_w.document.write("<input type=\"hidden\" name=\"confirm\" value=\"on\">");
	_w.document.write("<input type=\"hidden\" name=\"charset\" value=\"UTF-8\">");
	_w.document.write("<input type=\"hidden\" name=\"magid\" value=\"d26j\">");
	_w.document.write("<input type=\"hidden\" name=\"event\" value=\"hp\">");
	_w.document.write("<input type=\"hidden\" name=\"email\" value=\""+_form.email.value+"\">");
	_w.document.write("</form>");
	_w.document.close();
	_w.document.myForm.submit();
	return false;
}
//削除ファンクション
function mailQuit(_form){
	//送信先の指定
	_url = "https://regssl.combzmail.jp/adddel.cgi";
	//ウィンドウのポップアップと書き込み
	_w = window.open("about:blank","quitWin","width=547,height=294");
	_w.document.open();
	_w.document.write("<form name=\"myForm\" method=\"post\" action=\""+_url+"\">");
	_w.document.write("<input type=\"hidden\" name=\"mode\" value=\"del\">");
	_w.document.write("<input type=\"hidden\" name=\"confirm\" value=\"on\">");
	_w.document.write("<input type=\"hidden\" name=\"charset\" value=\"UTF-8\">");
	_w.document.write("<input type=\"hidden\" name=\"magid\" value=\"d26j\">");
	_w.document.write("<input type=\"hidden\" name=\"email\" value=\""+_form.email.value+"\">");
	_w.document.write("</form>");
	_w.document.close();
	_w.document.myForm.submit();
	return false;
}
//変更ファンクション
function mailChange(_form){
	//送信先の指定
	_url = "https://regssl.combzmail.jp/adddel_chg.php";
	//ウィンドウのポップアップと書き込み
	_w = window.open("about:blank","regWin","width=547,height=294");
	_w.document.open();
	_w.document.write("<form name=\"myForm\" method=\"post\" action=\""+_url+"\">");
	_w.document.write("<input type=\"hidden\" name=\"charset\" value=\"UTF-8\">");
	_w.document.write("<input type=\"hidden\" name=\"magid\" value=\"d26j\">");
	_w.document.write("<input type=\"hidden\" name=\"email\" value=\""+_form.email.value+"\">");
	_w.document.write("<input type=\"hidden\" name=\"email_new\" value=\""+_form.email_new.value+"\">");
	_w.document.write("</form>");
	_w.document.close();
	_w.document.myForm.submit();
	return false;
}
/*------------------------------------
メールマガジン（携帯用）登録・解除用ファンクション
------------------------------------*/
//登録ファンクション
function mailRegM(_form){
	//
	_url = "https://regssl.combzmail.jp/adddel.cgi?charset=UTF-8&mode=add&confirm=on&event=hp&magid=2xzr&email_account="+_form.email_account.value+"&email_domain="+_form.email_domain.value+"&submit=%93%C7%8E%D2%93o%98%5E";
	//ウィンドウのポップアップと書き込み
	_w = window.open(_url,"regWin","width=547,height=367");
	return false;
}
//削除ファンクション
function mailQuitM(_form){
	//送信先の指定
	_url = "https://regssl.combzmail.jp/adddel.cgi?charset=UTF-8&mode=del&confirm=on&magid=2xzr&email_account="+_form.email_account.value+"&email_domain="+_form.email_domain.value+"&submit=%89%F0%8F%9C";
	//ウィンドウのポップアップと書き込み
	_w = window.open(_url,"regWin","width=547,height=367");
	return false;
}
//変更ファンクション
function mailChangeM(_form){
	//送信先の指定
	_url = "https://regssl.combzmail.jp/adddel_chg.php";
	//ウィンドウのポップアップと書き込み
	_w = window.open("about:blank","regWin","width=547,height=294");
	_w.document.open();
	_w.document.write("<form name=\"myForm\" method=\"post\" action=\""+_url+"\">");
	_w.document.write("<input type=\"hidden\" name=\"charset\" value=\"UTF-8\">");
	_w.document.write("<input type=\"hidden\" name=\"magid\" value=\"2xzr\">");
	_w.document.write("<input type=\"hidden\" name=\"email_account\" value=\""+_form.email_account.value+"\">");
	_w.document.write("<input type=\"hidden\" name=\"email_domain\" value=\""+_form.email_domain.value+"\">");
	_w.document.write("<input type=\"hidden\" name=\"email_new_account\" value=\""+_form.email_new_account.value+"\">");
	_w.document.write("<input type=\"hidden\" name=\"email_new_domain\" value=\""+_form.email_new_domain.value+"\">");
	_w.document.write("</form>");
	_w.document.close();
	_w.document.myForm.submit();
	return false;
}

