<!--
// focus
function allblur() {
  for (i = 0; i < document.links.length; i++)
    document.links[i].onfocus = document.links[i].blur;
}


function goto_new(form) {
	var windowprops = ""; // ÆË¾÷Ã¢ÀÇ ¿É¼Ç
	var URL = form.go.options[form.go.selectedIndex].value;
	if (URL != "" && URL != null){
		popup = window.open(URL,'',windowprops);
	}
}


//-->

