// JavaScript Document
<!--
function notice_window() {
	//window.open("/notice_window.html", "notice", "width=480, height=360, scrollbars=yes, location=no, menubar=no");
	return false;
}

function addFavorite() {
	var site_url	= document.URL;
	var site_title	= document.title;
	
	if (navigator.userAgent.indexOf("MSIE") > -1) {
		// IE
		window.external.AddFavorite(site_url, site_title);
	} else if(navigator.userAgent.indexOf("Firefox") > -1) {
		// FF
		//window.sidebar.addPanel(site_title, site_url, '');
	} else {
		 // 何もしない
		void(0);
	}

}

function jump(url) { window.location.href = url; }

var already_requested = false;
function get_one_time() {
	if (already_requested == false) {
		already_requested = true;
		return true;
	} else {
		return false;
	}
}
//-->

<!--
function download_window(qt) {
	window.open("/gate/download_copyright.php?" + qt, "download", "width=540, height=600, scrollbars=yes, location=no, menubar=no");
	return false;
}
// -->