var pathname = window.location.pathname.toLowerCase();filename = pathname.substring(0,(pathname.lastIndexOf('nsf')+4)) ;function AW_BustFrames() {        if (self.parent.frames.length!=0)        {                self.parent.location.replace(document.location.href);        }}function setlinks() {	 var state = document.forms[0].State.value       for (var i = 0; i < document.links.length; i++) {              //Use the search property of the link object to append the Program Name		strVal = document.links[i].href;		UpperStr = strVal.toUpperCase();		if( UpperStr.indexOf( "JAVASCRIPT" ) == -1 ) {					var u = String(document.links[i].search);						if(strVal.indexOf("#") != -1) {				strVal.match(/#/);						alink = RegExp.rightContext;				document.links[i].search= document.links[i].search + "&st=" + state + "#" + alink ;				} else {		              		document.links[i].search=document.links[i].search + "&st=" + state               		}            	}       }}  function launchForm ( fname) {	var winTitle = fname;			var newWindow = window.open(filename + '/' + fname + '?Open=' ,winTitle,'status=no,toolbar=no,location=no,scrollbars=auto,directories=no');	newWindow.focus();		}	function getCookieVal (offset) {  var endstr = document.cookie.indexOf (";", offset);  if (endstr == -1)    endstr = document.cookie.length;  return unescape(document.cookie.substring(offset, endstr));}function SetCookie ( name, value, expires, path, domain, secure ) {	document.cookie = name + "=" + (value) +	((expires) ? "; expires=" + expires.toGMTString() : "") +	((path) ? "; path=" + path : "") +	((domain) ? "; domain=" + domain : "") +	((secure) ? "; secure" : "");}function getCookie (name) {  var arg = name + "=";  var alen = arg.length;  var clen = document.cookie.length;  var i = 0;  while (i < clen) {    var j = i + alen;    if (document.cookie.substring(i, j) == arg)      return getCookieVal (j);    i = document.cookie.indexOf(" ", i) + 1;    if (i == 0) break;   }  return null;}function deleteCookie (name,path,domain) {  if (getCookie(name)) {    document.cookie = name + "=" +      ((path) ? "; path=" + path : "") +      ((domain) ? "; domain=" + domain : "") +      "; expires=Thu, 01-Jan-70 00:00:01 GMT";  }}