1 つのページに 2 つのアドセンス コードを追加しようとしています。私がそれを行うと、(最初に定義された)1つだけが表示され、ページは無限にロードされているようです。
サンプル スロットとクライアント ID を含むコードを次に示します。
<body>
<script type="text/javascript"><!--
google_ad_client = "ca-pub-xxxxxxxxx";
google_ad_slot = 111111111;
google_ad_width = 160;
google_ad_height = 600;
//-->
</script>
<script type="text/javascript"
src="http://pagead2.googlesyndication.com/pagead/show_ads.js">
</script>
<script type="text/javascript"><!--
google_ad_client = "ca-pub-xxxxxxxxx"; //the same like the first one client
google_ad_slot = 222222222;
google_ad_width = 336;
google_ad_height = 280;
//-->
</script>
<script type="text/javascript"
src="http://pagead2.googlesyndication.com/pagead/show_ads.js">
</script>
</body>
これらの adSense コードの 1 つを削除すると、機能します。両方のコードで動作させるにはどうすればよいですか?