/*
window.onload = function() {
	//redirectToW3();
}

function redirectToW3() {
	var href = window.location.href;
	if (href.indexOf('http://5pb.jp/afiliasaga/', 0) == 0) {
		var loc = href.split('http://5pb.jp/afiliasaga/')[1];
		window.location = 'http://5pb.jp/afiliasaga/' + loc;
	}
}
*/
function news(id) {
	var win = window.open('./news/' + id + '.html', 'news', 'toolbar=0, location=1, directories=0, status=1, menubar=0, scrollbars=1, resizable=0, width=600, height=300');
	win.focus();
}

function getAgent() {
	var ua = navigator.userAgent.toLowerCase();
	return ua;
}