IEでは動作しないので、読み込み側のスクリプトを一部改変(太字部分)。
・表示させたい箇所に、(幅は各自 変えてね)
<div id="adsense_1" style="width:120px;height:90px;"></div>
<div id="adsense_2" style="width:120px;height:90px;"></div>
<div id="adsense_3" style="width:120px;height:90px;"></div>
・HTML末尾に、
<pre><code>
<script type="text/javascript" src="lazy_writer.js"></script>
<script type="text/javascript">
var adsense_url = "http://pagead2.googlesyndication.com/pagead/show_ads.js";
document.lazy_writer(adsense_url, function(str){
var id = "adsense_" + this.script_count;
if (str.match(/iframe/i)) {
document.getElementById(id).innerHTML = str;
}else {
document.getElementById(id).innerHTML = '代替HTML(IEとか用)';
}
});
</script>
</code></pre>
・そのあと、Google支給のコード