function fnJumpMenu(selObj,restore){
	var pdf_w = window.open('', 'zaimudata', '');
	pdf_w.location = selObj.options[selObj.selectedIndex].value;
	if (restore) selObj.selectedIndex=0;
}

var invest_w = window;
function openPOP(url) {
   if ((invest_w == window) || invest_w.closed) {
      invest_w = open(url, "to_pop", "menubar=no,toolbar=no,scrollbars=yes,width=460,height=400");
   } else {
      invest_w.location.href = url
      invest_w.focus('to_pop');
   }
   return(false);
}

/*0903 印刷用ウインドウ*/
function openWin(){
	window.open(window.location.href,"printWindow");
}
