function link2DL(browser){
	document.frm.browser.value = browser;
	document.frm.action = '/download/';
	document.frm.submit();
}

function check2DL(browser){
	if( !document.frm.agreement.checked ){
		document.getElementById("error_agreement").innerHTML = "ダウンロードには使用許諾契約書の同意にチェックが必要です。";
		return;
	} else {
		document.frm.browser.value = browser;
		document.frm.action = '/download/d_auth.php';
		document.frm.submit();
	}
}
