Embedding a wave in a web page

This wave was originally on my blog, but the embedding method messed with the template too much in my opinion. So I moved it off to a separate web page here.

The HTML used to embed the wave is this:

<div id="my-first-wave" style="width: 100%; height: 420px"></div>

<script type="text/javascript" src="http://wave-api.appspot.com/public/embed.js"></script>
<script type="text/javascript">
var wave = new WavePanel('https://wave.google.com/wave/');
wave.loadWave('googlewave.com!w+L9RRvp1iA');
wave.init(document.getElementById('my-first-wave'));
</script>