#!/bin/bash
export HOME

width=800
height=600

page="$HOME/.notes.html"
echo '<html><head><script type="text/javascript">'>"$page"
echo "window.resizeTo($width,$height);">>"$page"
echo '</script></head>'>>"$page"
echo '<body><iframe src="http://www.google.com/notebook" style="height:100%;width:100%"></iframe></body></html>'>>"$page"

command="firefox $page"

`$command`
