注: これはバグとして Google に報告されますが、修正が遅れることがよくあります。
ウィンドウの幅に基づいて関数を呼び出す Web ページは、IE や Firefox などでは機能しますが、Chrome では「時々」失敗します。この問題 (Chromium ベースのブラウザーで) は、ブラウザーの起動時に対象の Web ページが自動的に再読み込みされるときにのみ発生しました。
<script>
var dde = document.documentElement;
if(!document.documentElement) dde = document.body; // fix for IE6 and earlier
myWidth = Math.max(dde.scrollWidth,dde.offsetWidth,dde.clientWidth);
if(myWidth < 960) document.location.href="http://www.gooplusplus.com/mini.php";
</script>