﻿//メールマガジン登録
		function check_mail( str ) {
			return str.match(/^\S+@\S+\.\S+$/); ;
		}

		function mzSubmit(moMode){
			var loForm;


			if (moMode == 'Add'){
				loForm = document.ctlFormAdd;
			} else {
				loForm = document.ctlFormDel;
			}

			if ('' == loForm.rdemail.value){
				alert('メールアドレスを入力して下さい。');
				loForm.rdemail.focus();
				return false;
			}

			if (!check_mail(loForm.rdemail.value)){
				alert('メールアドレスを正しく入力して下さい。');
				loForm.rdemail.focus();
				return false;
			}

			loForm.submit();
		}


//ウィンドウオープン　スクロールなし
function Wo(url,w,h){
	window.open(url,"newindow","menubar=no,resizable=yes,titlebar=no,alwaysRaised=yes,status=no,scrollbars=no,width=" + w + ",height=" + h + "");
}

//ウィンドウオープン　スクロールあり
function Wo_sc(url,w){
	window.open(url,"newindow","menubar=no,resizable=yes,titlebar=no,alwaysRaised=yes,status=no,scrollbars=yes,width=" + w + "");
}

//ウィンドウ閉じる
function Wclose(){
	window.close();
}

//ページ遷移
//function Move(url){
//	location.href = url;
//}


//以下、参考資料
//写真クリックでウインドウオープン
function imgOpenWin(IO)
{
NewWin=window.open("","popup","width=380,height=400,scrollbars=no,resizable=no,toolbar=no,directories=no,location=no,menubar=no,status=no,left=0,top=0");
NewWin.location.href=IO;
}
