function noHistory(){
	var form = document.hisFrm;
	if(form.myCHK.checked){	//「履歴を残さない」にチェックした場合historyFlgをoffに
		SetSubCookie("mnxset","historyFlg","off");
	} else {
		SetSubCookie("mnxset","historyFlg","on");
	}

}

function resetHistory(){ // fund_historyのクッキーをnullに
	document.getElementById("dis").innerHTML = '<TABLE width="90%" border="0" cellpadding="2" cellspacing="0"><TR><TD align="center" bgcolor="#f0f0f0"><IMG src="/image/clr/c_bnk.gif" width="1" height="10" alt=""><BR><FONT size="-1">履歴はありません</FONT><BR><IMG src="/image/clr/c_bnk.gif" width="1" height="10" alt=""><BR></TD></TR></TABLE>';
	document.getElementById("dis2").style.display = 'none';
	SetSubCookie("mnxset","fund_history","");


}


