var QS = new Array;
if (location.search.length > 1) {
var m_Array = location.search.substr(1).split("&"); 
	for (idx in m_Array) {
		QS.push(m_Array[idx].split("="));
	}
}

var ua = navigator.userAgent;

var from = QS[0][1];
var title_name = encodeURI("裸のエロ天使");

//var re_url = "http://seo-mobi.net/count_c/?f=" + from + "&t=" + title_name;
var re_url = "./pc/?f=" + from + "&t=" + title_name;

if( ua.indexOf( "Opera" ) != -1 ) {
	window.location.href = re_url;
}
else if( ua.indexOf( "MSIE" ) != -1 ) {
	location.href = re_url;
}
else if( ua.indexOf( "Firefox" ) != -1 ) {
	window.location.href = re_url;
}
else if( ua.indexOf( "Safari" ) != -1 ) {
	window.location.href = re_url;
}

