window.addEventListener?window.addEventListener("load",AppleChecker,false):window.attachEvent("onload",AppleChecker);

function AppleChecker(){
	var ua = navigator.userAgent;
	if(ua.indexOf('iPhone') > -1 || ua.indexOf('iPod')  > -1){
		location.replace("skip_noflash.html"); //iPhone,iPodtouch—p‚ĚURL
	}
	else if(ua.indexOf('iPad') > -1){
		location.replace("skip_noflash.html"); //iPad—p‚ĚURL
	}
}

