バナー表示をJavascriptで制御する

iframeによるバナーの表示・非表示のサンプルです。この例では、何かQUERY_STRINGがあれば、バナーを隠す制御をしています。
これは単純ですが、いろいろと応用が利きます。

<html>
<head>
<script src="http://prototype.conio.net/dist/prototype-1.3.1.js"></script>
<script language="javascript">
<!--
function displayBanner() {
	if(window.location.search) {
		$("banner").height = "0";
	} else {
		$("banner").contentDocument.getElementsByTagName("body")[0].innerHTML="バナー表示";
	}
}
//-->
</script>
</head>
<body onLoad="displayBanner()">
<iframe frameborder=0 marginheight=0 marginwidth=0 width=600 height=50 id="banner"></iframe>
<p>ここが本文</p>
</body>
</html>