// Function to detect which browser and then serve additional style sheets for Opera or Netscape 6 
<!--
	var browserName = navigator.appName;
	var browserVersion = parseInt(navigator.appVersion);
	var browser;
	if (navigator.vendor == ('Netscape6') || navigator.vendor == ('Netscape7')){
		browser = "Netscape 6";
	}
	if(navigator.userAgent.indexOf("Opera")!=-1){
	var versionindex=navigator.userAgent.indexOf("Opera")+6
	if (parseInt(navigator.userAgent.charAt(versionindex))>=7)
	    browser = "opera";
	}

 // if (browser == "opera")
 // {
 // 	document.write('<style type="text/css" media="screen"><!-- @import url(/css/opera.css); --></style>');
  //}

  if (browser == "Netscape 6")
  {
  	document.write('<style type="text/css" media="screen"><!-- @import url(/css/netscape6.css); --></style>');
  }
  
  	// alert(navigator.userAgent)
  
	// alert(browser);
//-->




// Function for popup windows to play audio in easy read pages
var newwindow;
function poptastic(url)
{
	newwindow=window.open(url,'CSCI','height=130,width=230');
	if (window.focus) {newwindow.focus()}
}