/* スムーズスクロール
----------------------------------------------- */

function pageup() {
	var posi;
	posi = document.documentElement.scrollTop;
	moveObje(posi);
}
function moveObje(position) {
	move = position / 7;
	point = parseInt(position - move);
	scrollTo(0,point);
	if (point > 0) { setTimeout("moveObje(point)",1); }
}



/* フォームテキストエリア
----------------------------------------------- */

function focusColor(i){
	i.style.borderColor='#333333';
	i.style.backgroundColor='#eeeeee';
}
function blurColor(i){
	i.style.borderColor='#999999';
	i.style.backgroundColor='#ffffff';
}


/* メールフォーム
----------------------------------------------- */

function CheckForm(){
	var cus_name = document.getElementById('cus_name').value;
	var cus_kana = document.getElementById('cus_kana').value;
	var company = document.getElementById('company').value;
	var dept = document.getElementById('dept').value;
	var zip = document.getElementById('zip').value;
	var prefecture = document.getElementById('prefecture').value;
	var address1 = document.getElementById('address1').value;
	var tel = document.getElementById('tel').value;
	var inquiry = document.getElementById('inquiry').value;
	var contact = document.getElementById('contact').value;
	var message = document.getElementById('message').value;

	if(cus_name == "" || cus_kana == "" || company == "" || dept == "" || zip == "" || prefecture == "" || address1 == "" || tel == "" || inquiry == "" || contact == "" || message == "") {
		return false;
	}
}