var frameSrc
if (location.search)
	frameSrc = location.search.substring(1)
else
	frameSrc = 'intro.htm'

document.write('<frameset rows="100,*">');
document.write('<frame frameborder="1" marginheight="0" marginwidth="0" noresize="noresize" src="banner.htm" name="banner" scrolling="no">');
document.write('<frameset cols="25%,75%">');
document.write('<frame frameborder="1" src="contents.htm" name="contents">');
document.write('<frame frameborder="1" src="' + frameSrc + '" name="main">');
document.write('<noframes>');
document.write('<body>LayGO documentation requires a browser capable of displaying frames.</body>');
document.write('</noframes>');
document.write('</frameset>');

