<!--

//スタイルシート振り分け
var IsWin = (navigator.userAgent.indexOf("Win") >= 0);
	if (IsWin) {
		if (navigator.appName.charAt(0)=="M") {
		document.write('<link rel="stylesheet" href="/css/hc_win_ie.css" type="text/css">');
		} 
		else {
		document.write('<link rel="stylesheet" href="/css/hc_win_ns.css" type="text/css">');
		}
	} 
	else {
		if (navigator.appName.charAt(0)=="M") {
		document.write('<link rel="stylesheet" href="/css/hc_mac.css" type="text/css">');
		} 
		else {
		document.write('<link rel="stylesheet" href="/css/hc_mac.css" type="text/css">');
		}
	}


//新ウィンド用関数
       function SUBwin(URL) {
       window_location=window.open(URL,"SUBwindow","toolbar=0,location=0,directories=0,status=1,menubar=0,scrollbars=1,resizable=1,Width=400,Height=480");
	window_location.focus();
} 

function SelNavi(TF){
	location.href="/cgi-bin/navi.cgi?mode=navi&uid=" + TF.SearchNAVI.options.value;
}

function SelCat(TF){
	TF.SearchCAT.options.value;

	location.href="/cgi-bin/category.cgi?mode=category&cid=" + TF.SearchCAT.options.value;
}

function SelMenu(TF){
	location.href="/cgi-bin/menu.cgi?mode=menu&mid=" + TF.SearchMENU.options.value;
}

function SelDiary(TF){
	location.href="/cgi-bin/diary.cgi?uid=" + TF.DIARY.options.value;
}

function SelDlog(TF){
	var ID = TF.DATE.options.value;
	var SP = ":";
	var DATA = ID.split(SP);

	location.href="/cgi-bin/diary.cgi?mode=bn&uid=" + DATA[0] + "&date=" + DATA[1];
}

function SelEDlog(TF){
	var ID = TF.DATE.options.value;
	var SP = ":";
	var DATA = ID.split(SP);

	location.href="/cgi-bin/e_diary.cgi?mode=bn&uid=" + DATA[0] + "&date=" + DATA[1];
}

//--> 