/* // Browser checkvar strAppName, strUserAgent;strAppName = navigator.appName.toLowerCase();strUserAgent = navigator.userAgent.toLowerCase();var nnCookie = ""; //Initialize the Variableif (strAppName == 'netscape' &&  strUserAgent.substring(0,10) == 'mozilla/4.') {	// alert ("You are now in Netscape 4"); // Why does this cause a failure in IE?	nnCookie = getCookie ("cookieName=NetscapeUpgrade");if (nnCookie == null || nnCookie != "NetscapeUpgrade") {setCookie();// Set the NetscapeUpgrade cookie	if (confirm("LASER is moving to web standard, compliant browsers to support Federal accessibility initiatives. The browser you're using appears to be out-of-date. Would you like to find out more?")){     	   window.open("/browser.asp","NewWindow",'resizable,width=800,height=500,menubar,location,scrollbars,toolbar'); }}}// SetCookie functionfunction setCookie() {	var nnupgrade    = ""    // cookie string	var now          = nullvar expires      = null;	// Get the current time and set the expiration// time to one minute from nownow     = new Date()//   expires = new Date(now.getTime() + 60*1000)expires = new Date(now.getTime() + 30 * 24 * 60 * 60 * 1000); // plus 30 days// Construct the cookiennupgrade += "cookieName=NetscapeUpgrade"nnupgrade += "; expires=" + expires.toGMTString()document.cookie = nnupgrade;}function getCookie(name) {		var index = document.cookie.indexOf(name);	if (index == -1) return null;index = document.cookie.indexOf("=", index) + 1;	var endstr = document.cookie.indexOf(";", index);	if (endstr == -1) endstr = document.cookie.length;	return unescape(document.cookie.substring(index, endstr));	}// END browser check// Dynamic date functionfunction doClock(){   var t=new Date(),a=doClock.arguments,str="",i,a1,lang="1";  var month=new Array('January','Jan', 'February','Feb', 'March','Mar', 'April','Apr', 'May','May', 'June','Jun', 'July','Jul', 'August','Aug', 'September','Sep', 'October','Oct', 'November','Nov', 'December','Dec');  var tday= new Array('Sunday','Sun','Monday','Mon', 'Tuesday','Tue', 'Wednesday','Wed','Thursday','Thr','Friday','Fri','Saturday','Sat');  for(i=0;i<a.length;i++) {a1=a[i].charAt(1);switch (a[i].charAt(0)) {  case "M":if  ((Number(a1)==3) && ((t.getMonth()+1)<10)) str+="0";  str+=(Number(a1)>1)?t.getMonth()+1:month[t.getMonth()*2+Number(a1)];break;  case "D": if ((Number(a1)==1) && (t.getDate()<10)) str+="0";str+=t.getDate();break;  case "Y": str+=(a1=='0')?t.getFullYear():t.getFullYear().toString().substring(2);break;  case "W":str+=tday[t.getDay()*2+Number(a1)];break; default: str+=unescape(a[i]);}}return str;}// END Dynamic date function*/// IE hover functionssfHover = function() {	var sfEls = document.getElementById("menuVertical").getElementsByTagName("LI");	for (var i=0; i<sfEls.length; i++) {		sfEls[i].onmouseover=function() {			this.className+=" sfhover";		}		sfEls[i].onmouseout=function() {			this.className=this.className.replace(new RegExp(" sfhover\\b"), "");		}	}}if (window.attachEvent) window.attachEvent("onload", sfHover);sfHover2 = function() {	var sfEls = document.getElementById("menuHorizontal").getElementsByTagName("LI");	for (var i=0; i<sfEls.length; i++) {		sfEls[i].onmouseover=function() {			this.className+=" sfhover";		}		sfEls[i].onmouseout=function() {			this.className=this.className.replace(new RegExp(" sfhover\\b"), "");		}	}}if (window.attachEvent) window.attachEvent("onload", sfHover2);// END IE hover functions