/*-------------------------------------------------------------------*
 * 指定urlにフォームを送信する。
 *	引数	: val	: url
 *-------------------------------------------------------------------*/ 
function sendForm(val) {
	document.form1.method = "post";
	document.form1.action = val;
	document.form1.target ="_self";
	document.form1.submit();
}

function sendFormName(val, tg) {
	document.form1.method = "post";
	document.form1.action = val;
	document.form1.target = tg;
	document.form1.submit();
}

function sendFormBlank(val) {
	document.form1.method = "post";
	document.form1.action = val;
	document.form1.target ="_blank";
	document.form1.submit();
}

