//JavaScript Document for Nashua High South To determine the Browser
//lslamb
function browser(){
	if(document.all){ // for Internet Explorer
		document.styleSheets[1].disabled = true;
		document.styleSheets[0].disabled = false;

	} else { // for Netscape
		document.styleSheets[1].disabled = false;
		document.styleSheets[0].disabled = true;		
	}
}