//MSG WINDOW OPEN
function mwo(){
if(document.pf_input.reg_sw.checked == true && document.pf_input.auto_reg_ck.value == 0) {
	document.all["reg_msg"].style.visibility = 'visible';
mwiv = setInterval("mwm()",1);
}}

//MSG WINDOW MOVE LAYER
function mwm(){
ypos = document.body.scrollTop;
reg_msg.style.top = ypos;}

//MSG WINDOW CLOSE
function mwc(msg_ret){
   if(msg_ret==0){document.all["reg_sw"].checked=false;}
 document.all["reg_msg"].style.visibility = 'hidden';
 clearInterval(mwiv);
}

function func_sar_code_fl(){
var code_num = document.pf_input.pf_10.value;
if(code_num.match(/-/i)) {alert("ハイフンを含んでいます。");}
else if(code_num.match(/[^0-9]/i)) {alert("不正な文字が含まれています");}
else if(code_num.length == 7 && document.pf_input.pf_11.selectedIndex == 0){
document.pf_input.auto_post_code_fl.value = "1";
document.pf_input.submit();}}


function agreement_open() {
window.open('agreement.html', '_blank', 'width=750, height=600, menubar=no, toolbar=no, scrollbars=no, location=no, status=no, resizable=yes');
document.pf_input.auto_reg_ck.value = "1";
}