/* スマホ用グローバルメニュー */
function _write_spmenu() {

	document.write("<div style=\"height:30px;\">global menu space</div>");

	document.write("<script type=\"text/javascript\" src=\"http://www.fujitv.co.jp/javascripts/rtx/rt_track.js\"></script>");

}

/* PC用ページ、スマホ用ページでURLが異なる場合用。 */
function _redirect_pc_to_sp(url) {
	if ( window.location.href.indexOf("/ana/") != -1 ) { return; }
	if ( navigator.userAgent.match(/Android/i) || navigator.userAgent.match(/iPhone/i) || navigator.userAgent.match(/iPod/i) ) {
		if ( _getCookie("CX_SMARTPHONE_VIEW_TYPE") == "PC" ) {
			document.write("<div id=\"tosmartphone\"><a href=\"javascript:void(0)\" onclick=\"setSpTypeRedirect('" + url +"')\">スマートフォンサイトはこちら</a></div>");
		} else {
			window.location = url;
		}
	}
}
function _redirect_sp_to_pc(url) {
	if ( navigator.userAgent.match(/Android/i) || navigator.userAgent.match(/iPhone/i) || navigator.userAgent.match(/iPod/i) ) {
		if ( _getCookie("CX_SMARTPHONE_VIEW_TYPE") == "PC" ) {
			window.location = url;
		}
	}
}

