if (window.addEventListener) {
	window.addEventListener("load", denote_iframe_load, false);
} else {
	window.attachEvent("onload",denote_iframe_load);
}

function denote_iframe_load() {
	if (document.height)
		height = document.height;
	else
		height = document.body.clientHeight;
	denote_iframe = document.createElement("iframe");
	denote_iframe.style.display = "none";
	denote_iframe.src = "http://www.denoteapp.com/load/navigate/?height=" + height + "&location=" + escape(document.location.href);
	document.getElementsByTagName("body")[0].appendChild(denote_iframe);
}