var cssfile = new Array();
cssfile[0] = "./pokepale_other.css";	//デフォルト
cssfile[1] = "./pokepale.css";		//その他

var css = GetCookie("CSS");
if(css == ""){css = cssfile[0];}
document.write('<LINK REL="stylesheet" HREF="' + css + '" TYPE="text/css">');

function GetCookie(key){
	var tmp = document.cookie + ";";
	var index1 = tmp.indexOf(key, 0);
	if(index1 != -1){
		tmp = tmp.substring(index1, tmp.length);
		var index2 = tmp.indexOf("=", 0) + 1;
		var index3 = tmp.indexOf(";", index2);
		return(unescape(tmp.substring(index2,index3)));
		}
	return("");
	}

if(navigator.userAgent.indexOf('iPhone') > 0 || navigator.userAgent.indexOf('iPad') > 0 || navigator.userAgent.indexOf('iPod') > 0 || navigator.userAgent.indexOf('Android') > 0) {
	document.write('<LINK REL="stylesheet" type="text/css" href="pokepale_iphone.css">');
	document.write('<meta name="viewport" content="width=1024, initial-scale=0.8, minimum-scale=0.3, maximum-scale=4.0, user-scalable=yes,">');
	document.write('<meta name="format-detection" content="telephone=no">');
	}

