var ph1="";
var ph2="";
var ph3="";
function change_img(a,b) {
	document.images[a].src=b;
}

var photo_name="";
function change_img2(a,b,c) {
	if (c==0) {
		document.images[a].src=b;
		photo_name=b;
	} else {
		//alert(photo_name);
		if (photo_name!="") document.images[a].src=photo_name;
	}	
}


var nx=760;
var ny=420;
function zoomflash(s) {
	nx=nx*s
	ny=ny*s
	document.getElementById("MainFlash").style.width=nx;
	document.getElementById("MainFlash").style.height=ny;
	document.MainFlash.width=nx;
	document.MainFlash.height=ny;
}


//講演依頼フォーム
function checkscore() {

	if (document.okyaku.name.value=="") {
		alert("お名前が正しく入力されていません！");
//		window.open("toiawase.htm#up","down")
		document.okyaku.name.focus();
		document.okyaku.name.select();
		return;
	}

	if (document.okyaku.furigana.value=="") {
		alert("フリガナが正しく入力されていません！");
//		window.open("toiawase.htm#up","down")
		document.okyaku.furigana.focus();
		document.okyaku.furigana.select();
		return;
	}

	if (document.okyaku.email.value=="") {
		alert("メールアドレスが入力されていません！");
//		window.open("toiawase.htm#up","down")
		document.okyaku.email.focus();
		document.okyaku.email.select();
		return;
	}

	if (document.okyaku.email.value.indexOf("@",0)<=0) {
		alert("メールアドレスが間違っています！");
//		window.open("toiawase.htm#up","down")
		document.okyaku.email.focus();
		document.okyaku.email.select();
		return;
	}

	window.document.okyaku.submit();
}

