<!--
function MM_preloadImages()
{
	//v3.0
	var d=document;
	if(d.images){
		if(!d.MM_p) d.MM_p=new Array();
		var i,j=d.MM_p.length,a=MM_preloadImages.arguments;
		for(i=0; i<a.length; i++)
		if (a[i].indexOf("#")!=0){
			d.MM_p[j]=new Image;
			d.MM_p[j++].src=a[i];
		}
	}
}

function ChangeImages(img1,url1,img2,url2)
{
	document.images[img1].src = url1;
	document.images[img2].src = url2;
}

function ChangeImage(img, url)
{
	document.images[img].src = url;
}

function MM_jumpMenu(targ,selObj,restore){ //v3.0
	eval(targ+".location='"+selObj.options[selObj.selectedIndex].value+"'");
	if (restore) selObj.selectedIndex=0;
}

// 入力チェック
function check() 
{
	var flg;
// 未入力チェック
	flg = 0;
	if (document.int_form.sei.value == "")
		flg = 1;
	if (document.int_form.mei.value == "")
		flg = 1;
	if (document.int_form.ksei.value == "")
		flg = 1;
	if (document.int_form.kmei.value == "")
		flg = 1;
	if (document.int_form.nen.value == "")
		flg = 1;
	if (document.int_form.tuki.value == "")
		flg = 1;
	if (document.int_form.hi.value == "")
		flg = 1;
	if (document.int_form.zip1.value == "")
		flg = 1;
	if (document.int_form.zip2.value == "")
		flg = 1;
	if (document.int_form.kencd.value == "0")
		flg = 1;
	if (document.int_form.add1.value == "")
		flg = 1;
	if (flg == 1){
		alert("必須入力項目にまだ入力されていないところがあります。");
		return false;
	} else {
		//送信確認
		sendflg = confirm("送信してもよろしいですか？");
		if(sendflg){
			return true;
		} else {
			return false;
		}
	}
}
//-->