function isAgreed(){
	if( isCheckboxOn('Agree' ) ){
		return true;
	}else{
		alert("「同意する」にチェックを入れて下さい");
		return false;
	}
}
function goInputBorrowing(){
	if( isAgreed() ){
		location.href = "input_borrowing.phtml";
	}
}
function goInputClearing(){
	if( isAgreed() ){
		location.href = "input_clearing.phtml";
	}
}
