function openWin(url, name, w, h){
	window.open(url, name, 'width=325, height=285, scrollbars=no');
}

function download(){
	if(document.form1.check_agree.checked == true){
		document.form1.submit();
	}else{
		alert("利用規約に同意するをチェックしてください。");
	}
}