// JavaScript Document

resizeIframe()
window.onresize=resizeIframe

function resizeIframe() {
	document.getElementById("nav").height=document.body.clientHeight-20					// Copyright footer height
	document.getElementById("subnav").height=document.body.clientHeight-276			// Windows height less banner height (256px)
	document.getElementById("content").height=document.body.clientHeight-276		// Windows height less banner height (256px)
}
