// JavaScript Document

/*
File: see_htm.js
Purpose: Recieve a whole number called which_htm from a navigation area and replace the current .htm with the new one identified by which_htm

*/
var htm_file = new Array("interior_and_face_planes_overlaid.htm","red_green_blue_planes_38_overlaid.htm","red_green_blue_planes_68_overlaid.htm","red_green_blue_planes_98_overlaid.htm","red_green_blue_planes_c8_overlaid.htm","red_green_blue_planes_f8_overlaid.htm")
//Manually assign the htm file names a position in the array. 

function see_htm(which_htm){//which_htm is assigned in the calling object and identifies the position in the array for the htm file.
	for (i=0;i<=htm_file.length;i++){
		//document.write("i= "+i+"<br />");
		if (i==which_htm){
		window.location=htm_file[i]
		}
	}
}