// JavaScript Document// Legacy NN4 basic supportfunction MM_reloadPage(init) {  //reloads the window if Nav4 resized	if (init==true) with (navigator) {if ((appName=="Netscape")&&(parseInt(appVersion)==4)) {		document.MM_pgW=innerWidth; document.MM_pgH=innerHeight; onresize=MM_reloadPage; }}	else if (innerWidth!=document.MM_pgW || innerHeight!=document.MM_pgH) location.reload();}MM_reloadPage(true);// New in-site pop up windowfunction MM_openBrWindow(theURL,winName,features) { //v2.0  window.open(theURL,winName,features);}// XHTML Strict compliant links to new windows (used to be "target" attribute)function extLinks() {	if (!document.getElementsByTagName) return;	var anchors = document.getElementsByTagName("a");	for (var i=0; i<anchors.length; i++) {		var anchor = anchors[i];		if (anchor.getAttribute("href") &&			anchor.getAttribute("rel") == "external")		anchor.target = "_blank";	} }//Test for browser mode (standards or quirks)/*function modeTest() {	alert('Test - quirks or standards?\n compatMode is '+document.compatMode)}*/// Display IE versionif (document.all){	var detect = navigator.userAgent.toLowerCase();	var browser,thestring;	var version = 0;	if (checkIt('msie')) 	{		browser = "IE "		version = detect.substr(place + thestring.length,3)		browser += version;		document.title = browser + ' - ' + document.title; 	}}function checkIt(string){	place = detect.indexOf(string) + 1;	thestring = string;	return place;}