<!--style sheet-->
	if (navigator.appName == "Microsoft Internet Explorer") 
	{
		document.write('<link rel="stylesheet" type="text/css" href="/schedule/css/ie_style.css">');
	}
	else if (navigator.appName == "Netscape")
	{
		document.write('<link rel="stylesheet" type="text/css" href="/schedule/css/nc_style.css">');
	}
	
<!--top of page-->
function go_top() {
	document.location = '#' + document.anchors[0].name
}

<!-- 年月プルダウンが選択されたときに呼び出す関数 -->
function changeSelect(form) {
 if (form.options[form.selectedIndex].value) {
  location.href = form.options[form.selectedIndex].value;
 }
}

<!-- 削除確認メッセージ表示 -->
function confirm_delete(){
	return confirm("削除してもよろしいですか？");
}

<!-- 削除ボタンを押したときに呼び出す関数 -->
function del_schedule(id,ymd){
	if(confirm_delete() == true){
		window.location.href="./del_schedule.php?id="+id+"&ymd="+ymd;
	}
}