/* スムーズスクロール
----------------------------------------------- */

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 name = document.getElementById('name').value;
	var zip = document.getElementById('zip').value;
	var country = document.getElementById('country').value;
	var addr1 = document.getElementById('addr1').value;
	var addr2 = document.getElementById('addr2').value;
	var company = document.getElementById('company').value;
	var section = document.getElementById('section').value;
	var tel = document.getElementById('tel').value;
	var fax = document.getElementById('fax').value;
	var email = document.getElementById('email').value;
	var subject = document.getElementById('subject').value;
	var comment = document.getElementById('comment').value;

	if(name == "" || zip == "" || country == "" || addr1 == "" || addr2 == "" || company == "" || section == "" || tel == "" || fax == "" || email == "" || subject == "" || comment == "") {
		return false;
	}
}
