function toggleMtns(mtn) {
	var theMtn = document.getElementById(mtn);
	var cur = theMtn.style.display;
	if (cur == "none")
	{
		theMtn.style.display = "";
	}
	else {
		theMtn.style.display = "none";
	}
}

function kill_frames() {
  if (top.location != location) {
    top.location.href = document.location.href ;
  }
}

function picOpen(pic) {
	newWin = window.open('foo.html','','height=695,width=875,scrollbars=yes,resizable=yes');
	
	newWin.document.writeln("<html><head><title>One of Nathan\'s Pictures</title></head>");
	newWin.document.writeln("<body bgcolor='#CCFFFF'><center>");
	newWin.document.writeln("<table width='100%' height='100%' valign='center'><tr><td>");
	newWin.document.writeln("<center><a href='javascript:this.close()'><img border=0 src='http://www.nathan-hale.com/pictures/" + pic + ".jpg'></a></center>");
	newWin.document.writeln("<br><br><center><b>Click picture to close window</b></center>");
	newWin.document.writeln("</td></tr></table>");
	newWin.document.writeln("</center></body></html>");

	newWin.document.close();
}

