<!DOCTYPE html>
<html lang="ja">
<head>
<meta charset="UTF-8">
<script>
alert("所定のダウンロード画面よりダウンロードを開始してください。");
var ua =navigator.userAgent;
if(ua.indexOf('iPhone') > -1 || ua.indexOf('iPad') > -1 || ua.indexOf('iPod') > -1){
history.back();
}else{
location.href="./";
}
</script>
</head>
</html>