//ページ表示用
function Open(url,options){
	if(options == ""){
		window.open("","new_win");
	} else {
		window.open("","new_win",options);
	}
	document.frm.target="new_win";
	document.frm.action = url;
	document.frm.method="post";
	document.frm.submit();
}
//ページ遷移用
function Send(url,target){
	if(target!=undefined){
		document.frm.target=target;
	} else {
		document.frm.target="_top";
	}
	document.frm.action = url;
	document.frm.method="post";
	document.frm.submit();
}
//JFKカレンダー
var cal
function openCal(div,frm,text,text2){
	if(cal){
		cal.hide();
	}
	cal = new JKL.Calendar(div,frm,text,text2);
	cal.write();
}
//検索窓
function searchlib(htmltext){
	ol_close = "×";
	ol_closeclick = "1";
	ol_capcolor = "#333333";
	return overlib(htmltext,STICKY,CAPTION,'検索フォーム');
}
//文字サイズ調整
function fontSizeChange(target, s ){
	$(target).style.fontSize=s + "px";
}