<!-- hide script from old browsers

// Navigator2 and IE3 function about the same (both are JavaScript1.0 browsers)
// Navigator3 supports JavaScript1.1
// Navigator4 and IE4 support JavaScript1.2

vers = navigator.appVersion;
vers = parseFloat(vers.substring(vers.lastIndexOf(".")-1,vers.length));
browser=navigator.appName + " " + vers;
/* While in Netscape the version number is the first number in the navigator.appVersion string, in MSIE, the only sure bet is that it is the last decimal that appears in the string.*/

var transfer = true;
// if you want the page to transfer automatically, set transfer = true below

// The following function will load appropriate page according to browser

//--------------------------------------------------

function Barky() {
	if (navigator.appName=="Netscape") {                                                              	
window.open("Barky-NS.htm"); } 
	else { window.open("Barky-O.htm"); }
}

//----------------------------------------------------------------------

function musician() {
	if (navigator.appName=="Netscape") {                                                              	
window.open("musician-NS.htm"); } 
	else { window.open("musician-O.htm"); }
}

//----------------------------------------------------------------------

function scary() {
	if (navigator.appName=="Netscape") {                                                             	
if (vers >= 3)
   			window.open("scary-NS.htm");
  		else window.open("scary3.htm"); } 
	else if (navigator.appName == "Microsoft Internet Explorer") {
		if (vers >= 4)
   			window.open("scary4.htm");
  		else window.open("scary3.htm"); } 
// The following is for all other JavaScript browsers
	else { window.open("scary3.htm"); }
}

//-----------------------------------------------------------------------

function sheep() {
	if (navigator.appName=="Netscape") {                                                              	
window.open("sheep1n.htm"); } 
	else { window.open("sheep1.htm"); }
}

//-----------------------------------------------------------------------

function space() {
	if (navigator.appName == "Microsoft Internet Explorer") {                                                
if (vers >= 4)
   			window.open("space4.htm"); }
  	else { window.open("space3.htm"); }
}

//--------------------------------------------------------------------

function timemach() {
	if (navigator.appName=="Netscape") {                                                              	
window.open("timemach-NS.htm"); } 
	else { window.open("timemach-O.htm"); }
}

//--------------------------------------------------------------------

function woa() {
	if (navigator.appName=="Netscape") {                                                              	
window.open("woa-NS.htm", "main"); } 
	else { window.open("woa-O.htm", "main"); }
}

//----------------------------------------------------------------------

function vocab() {
window.open('lesol/vocab/vocab-png.html', 'mew','left=0,top=0,toolbar=no,menubar=no,location=no,scrollbars=yes,resize=yes,resizable=yes,statusbar=no'); }

function sahh() {
window.open('lesol/sahh/sahh-png.html', 'mewmew','left=0,top=0,toolbar=no,menubar=no,location=no,scrollbars=yes,resize=yes,resizable=yes,statusbar=no'); }

//----------------------------------------------------------------------

function Genie() {
window.open('ReadWeb/GenieReads.htm', 'msagent','left=0,top=0,toolbar=no,menubar=no,location=no,scrollbars=yes,resize=yes,resizable=yes,statusbar=no'); }

function Merlin() {
window.open('ReadWeb/MerlinReads.htm', 'msagent','left=0,top=0,toolbar=no,menubar=no,location=no,scrollbars=yes,resize=yes,resizable=yes,statusbar=no'); }

function Peedy() {
window.open('ReadWeb/PeedyReads.htm', 'msagent','left=0,top=0,toolbar=no,menubar=no,location=no,scrollbars=yes,resize=yes,resizable=yes,statusbar=no'); }


// end hiding -->
