/* ---------------------- */
/* 汎用Javascript         */
/* Author: ms_sonomi      */
/* Date:   07.08.08       */
/* ---------------------- */

function ChangeSelection(form, selection) {
	v = selection.selectedIndex; // 何番目のものが選ばれたか
	form.num.value = v;
}

function Change_run(i,cgi, j, val)
{
	document.forms[i].action = cgi;
	document.forms[i].elements[j].value = val;
	document.forms[i].submit();
}

function runCGI(i,cgi)
{
	document.forms[i].action = cgi;
	document.forms[i].submit();
}
