<!--
var browserType;
var isIE;
var bversion = parseFloat(navigator.appVersion);
var agt = navigator.userAgent;

 if (navigator.appName == 'Microsoft Internet Explorer')
     browserType= "ie";
 else if (navigator.appName == 'Netscape') 
     browserType = "Netscape";

function acceptbrow()  {
	thisver = bversion;
  if(browserType == "Netscape")  {
     if(thisver < 4.08)  {
	  window.location = "nobrows.htm";
	   }
     else if(thisver > 4.9)  {
	  window.location = "indexnosound.htm";
	   }
     else if(thisver > 4.08 && thisver < 5)  {
	  window.location = "indexnosound.htm";
	   }
     }
  else if(browserType == "ie")  {
     if(thisver < 4.0)   {
	  window.location = "nobrows.htm";
	  }
     else  {
	  window.location = "indexnosound.htm";
	  }
   }
  else if(agt.indexOf("Macintosh") != -1) {
	  window.location = "indexnosound.htm";
   }  
  else  {
	  window.location = "nobrows.htm";
   }  
  }

function getTeachersguide()  {
        questinfo = window.open("teacher/index.htm","","toolbar=no,location=0,directories=0,status=1,menubar=yes,scrollbars=yes,resizable=0,screenx=0,screeny=0,left=0,top=0,alwaysRaised=1,height=550,width=778");
questinfo.focus();
  }
function getHelp()  {
        questinfo = window.open("/peanuts/help.htm","","toolbar=0,location=0,directories=0,status=0,menubar=no,scrollbars=yes,resizable=0,screenx=0,screeny=0,left=0,top=0,alwaysRaised=1,height=528,width=778");
questinfo.focus();
  }
function getSportspage()  {
        questinfo = window.open("sptspage/inning1.htm","","toolbar=no,location=0,directories=0,status=1,menubar=yes,scrollbars=yes,resizable=0,screenx=0,screeny=0,left=0,top=0,alwaysRaised=1,height=550,width=778");
questinfo.focus();
  }
//  -->