/* Flash display */
function flashDisp() {
document.write("<object data='images/common/eyecatch.swf' width='940' height='195' type='application/x-shockwave-flash'>");
document.write("私たちクーレボは、映像配信プラットフォームの提供を通し、Communication、Contents、Community、Circle、Concierge、Corporate、Consultingに革命をもたらします。");
document.write("このWebサイトを快適に閲覧するために<a href='http://www.adobe.com/shockwave/download/?P1_Prod_Version=ShockwaveFlash&Lang=Japanese' title='Flash Player 最新版ダウンロードページへのリンク'> Adobe Flash Player</a> プラグインの最新版をインストールしてください。");
document.write("<param name='movie' value='images/common/eyecatch.swf' />");
document.write("<param name='menu' value='false' />");
document.write("</object>");
}


/* 入力チェック */
function important1() {
	var str = document.contact.uname.value;
	if( str.length == 0) {
		alert("名前を入力して下さい。");
		return 1;
	}
	return 0;
}

function important2() {
	var str = document.contact.email.value;
	if( str.length == 0) {
		alert("メールアドレスを半角英数字で入力して下さい。");
		return 1;
	}
	return 0;
}

function important3() {
	var str = document.contact.msg.value;
	if( str.length == 0 || str == "お問い合わせ内容を記入してください。") {
		alert("お問い合わせ内容を入力して下さい。");
		return 1;
	}
	return 0;
}

/* 全部チェック */
function all_check() {
	var check = 0;
	check += important1();
	check += important2();
	check += important3();
	if( check > 0 ) {
		document.contact.action = "#top";
		return false;
	}
	return check;
}