// sets up the html content to insert


document.writeln('<FORM>')
document.writeln('<HR NOSHADE WIDTH="100%">')
document.writeln('<FONT FACE="Courier New" SIZE="2"><DIV ALIGN="CENTER">')
document.writeln('<A HREF="../script.html">Introduction</A>')
document.writeln('&nbsp;&nbsp;&nbsp;&nbsp;')

// if we are not at the first page, then write a previous button
if (prevPage > 0) {
	document.writeln('<A HREF="mom_script' + prevPage + '.html?' + prevPage + '">&lt;-previous page</A>')
	document.writeln('&nbsp;&nbsp;&nbsp;&nbsp;')
}

// if we are not at the first page, then write a previous button
if (nextPage <= numPages) {
	document.writeln('<A HREF="mom_script' + nextPage + '.html?' + nextPage + '">next page-&gt;</A>')
	document.writeln('&nbsp;&nbsp;&nbsp;&nbsp;')
}

// build the jump to selector
document.writeln('jump to page:')
document.writeln('<SELECT NAME="RegionSelect2" onChange="goPage(RegionSelect2[RegionSelect2.selectedIndex].value);">')
document.writeln('<OPTION VALUE="none" SELECTED>Page#</OPTION>')
for (i=1; i <= numPages; i++) {
	document.writeln('<OPTION VALUE="' + i + '">' + i + '</OPTION>')
}
document.writeln('</SELECT>')

document.writeln('</DIV></FONT>')
document.writeln('</FORM>')
document.writeln('<HR NOSHADE WIDTH="100%">')
document.writeln('<CENTER>')
document.writeln('<A HREF="http://www.universalpictures.com"><IMG SRC="unilogowhite.gif" BORDER="0"></A><BR><FONT SIZE="1">&copy; 2000 Universal Studios')
document.writeln('</CENTER>')




