// JavaScript Documentfunction SS_checkBrowser(NSvers,NSpass,NSnoPass,IEvers,IEpass,IEnoPass,OBpass,URL,altURL) { //  based on MM_checkBrowser v4.0// ss - removed alt URL call and added JS popup warn  var newURL='', verStr=navigator.appVersion, app=navigator.appName, version = parseFloat(verStr);  if (app.indexOf('Netscape') != -1) {    if (version >= NSvers) { } //do nothing.  was window.alert("your browser is supported.  " + app + " " + verStr + "version "+version);    else { window.alert("Warning: This site is designed for a baseline of IE5/NS6. Your browser is " + app + " " + verStr + " version " + version + " The site SHOULD BE USEABLE but may not display correctly due to deficiencies in older browsers such as yours.");	}   } else if (app.indexOf('Microsoft') != -1) {   if (version >= IEvers || verStr.indexOf(IEvers) != -1){} //do nothing.  was window.alert("your browser is supported.  " + app + " " + verStr + "version "+version);    else {  window.alert("Warning: This site is designed for a baseline of IE5/NS6. Your browser is " + app + " " + verStr + " version " + version + " The site SHOULD BE USEABLE but may not display correctly due to deficiencies in older browsers such as yours.");	 }	  } else { window.alert("Warning: This site is designed for a baseline of IE5/NS6. Your browser is " + app + " " + verStr + " version "+ version + " The site SHOULD BE USEABLE but may not display correctly in your browser.");  } }-->
