function MypageLoginCheck() {

	msg = "";



	if (document.form.ID.value.length == 0) {

		msg = "IDを入力してください。";

	}



	if (document.form.PASS.value.length == 0) {

		if(msg) msg += "\n";

		msg += "PASSWORDを入力してください。";

	}



	if(msg){

		alert(msg);

		return false;

	}else{

		return true;

	}

	return false;



}



function MypageLogin(){

	win1 = window.open("https://www.secure-bridesword.jp/emb_secure/mypage/main.php","Mypage","toolbar=0,location=0,directories=0,status=yes,menubar=0,scrollbars=1,resizable=no,width=817,height=605");

	win1.focus();

}



function MitumoriNofile(){

	alert('申し訳ございませんが、ただいまお見積もりファイルは登録されておりません。');

	return;

}



function openImage(url,width,height){

	window.open(url, "imageViewer", "toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no,width="+ width + ",height=" + height );

}


