// globals

// public

function buildPage()
{
	document.writeln('<frameset frameborder=0 border=0 framespacing=0 cols=150,*>');
	document.writeln('<frameset frameborder=0 border=0 framespacing=0 rows=100,*,100>');
	document.writeln('<frame src=navtop.html name=navtop noresize scrolling=no>');
	document.writeln('<frame src=navmain.html name=navmain noresize scrolling=no>');
	document.writeln('<frame src=navbottom.html name=navbottom noresize scrolling=no>');
	document.writeln('<\/frameset>');
	document.writeln('<frameset frameborder=0 border=0 framespacing=0 rows=100,*>');
	document.writeln('<frameset frameborder=0 border=0 framespacing=0 cols=*,150>');
	document.writeln('<frame src=headingleft.html name=headingleft noresize scrolling=no>');
	document.writeln('<frame src=headingright.html name=headingright noresize scrolling=no>');
	document.writeln('<\/frameset>');
	document.writeln('<frameset>');
	document.writeln('<frame src="'+getRequestedPage()+'" name=main noresize marginwidth=0 scrolling=auto>');
	document.writeln('<\/frameset>');
	document.writeln('<\/frameset>');
	document.writeln('<\/frameset>');
}

// private

function getRequestedPage()
{
	return (location.search?unescape(location.search.substring(1)):"main/index.html");
}
