//// buster_scripts_ie.js// A set of JScripts used throughout the // Gunbuster.Net web site. //// resetToc// Zeroes out the toc listing.function resetToc() {	top.tocFrame.location.href="no_data.html";}// collapseToc// Hides the table of contents frame.function collapseToc() {	top.document.all.toc_data_frames.cols="0px,*";}// expandToc// Reveals the table of contents frame.function expandToc() {	top.document.all.toc_data_frames.cols="177px,*";}// resetData// Zeroes out the data display.function resetData() {	//parent.dataFrame.location.href="no_data.html";	top.dataFrame.location.href="no_data.html";}// loadData// Fills the data frame with a reference.function loadData( newHref ) {	top.dataFrame.location.href=newHref;}// pushLevel// Adds a level to the current directory listing.function pushLevel( nextLevel, nextUrl ) {	top.menuFrame.navigationPath.pushLevel( nextLevel, nextUrl ) ;}// popLevel// Removes a level from the current directory listing.function popLevel() {	top.menuFrame.navigationPath.popLevel() ;}// setLevel// Sets a specific level of the navigation path.function setLevel( levelNum, levelName, levelUrl ) {	top.menuFrame.navigationPath.setLevel( levelNum, levelName, levelUrl ) ;}// clearLevel// Revoves a level and all succeeding levels from// the navigation path.function clearLevel( levelNum ) {	top.menuFrame.navigationPath.clearLevel( levelNum ) ;}// presentImage// Launches a new image in its own window.function presentImage( source, caption, width, height ) {	imageWindow = window.open( source, 				 				"imageDisplay", 								"directories=no,menubar=no,status=no,resizable=yes," + 								"width=" + width + ",height=" + height ) ;	imageWindow.resizeTo( width, height ) ;}
