var dn_hangame_parent = "members-mhf.hangame.co.jp";
var dn_hangame = "hangame-members";
var dn_daletto = "daletto-members";
var dn_xbox360 = "xbox360-members";

var wh_userAgent_xbox360 = "MHF-Xbox360";

	
if(location.host.indexOf(dn_hangame_parent) != -1 || location.host.indexOf(dn_hangame) != -1){

	//ハンゲームの場合
	document.write('<script type="text/javascript" src="http://202.212.95.232/mhf_hangame/hunter.js"></script>');

} else if(location.host.indexOf(dn_daletto) != -1){

	//ダレットの場合
	document.write('<script type="text/javascript" src="http://202.212.95.232/mhf_daletto/hunter.js"></script>');

} else if(location.host.indexOf(dn_xbox360) != -1){

	//ハード閲覧以外なら
	if(navigator.userAgent.indexOf(wh_userAgent_xbox360) == -1){
		//Xbox360の場合
		document.write('<script type="text/javascript" src="http://202.212.95.232/mhf_xbox360/hunter.js"></script>');
	}

} else {

	//ハード閲覧以外なら
	if(navigator.userAgent.indexOf(wh_userAgent_xbox360) == -1){
		//それ以外（カプコン）の場合
		document.write('<script type="text/javascript" src="http://202.212.95.232/hunter.js"></script>');
	}
}
	
