var oldtxt = /.htm/
currloc = String(window.location);
seealso = currloc.replace(oldtxt, "_seealso.htm") ;

//function NonScrollTool() {
//    if (document.layers) {  // Netscape 4 and above
//        document.layers['NSR_navbar'].pageX = window.pageXOffset + window.innerWidth - 109;
//        document.layers['NSR_navbar'].pageY = window.pageYOffset + window.innerHeight - 134; 
//    		}
//    else if (document.all) {  //IE 4 and above
//        document.all['NSR_navbar'].style.posLeft = document.body.scrollLeft + document.body.clientWidth - 109;
//        document.all['NSR_navbar'].style.posTop = document.body.scrollTop + document.body.clientHeight - 134;
//    	}
//    setTimeout('NonScrollTool()',100);
//	}


function NonScrollTool() {
    if (document.layers) {  // Netscape 4 and above
        document.layers['NSR_navbar'].pageX = 0;
        document.layers['NSR_navbar'].pageY = window.pageYOffset + window.innerHeight - 89; 
    }
    else if (document.all) {         //IE 4 and above
        document.all['NSR_navbar'].style.posLeft = 0;
        if (document.all.text)      //  uses OVERFLOW for NSRs
       document.all['NSR_navbar'].style.posTop = document.all.text.clientHeight;
        else                        //   uses JavaScript NSRs
       document.all['NSR_navbar'].style.posTop = document.body.scrollTop + document.body.clientHeight - 89;
    }
    setTimeout('NonScrollTool()',100);
}


function nonscroll() {
if (navigator.appName == "Netscape")
   document.NSR_head.top=window.pageYOffset;
else
   NSR_head.style.pixelTop=document.body.scrollTop;
setTimeout('nonscroll()',100);
}


function NonScrollFooter() {
    if (document.layers) {  // Netscape 4 and above
        document.layers['NS_footer'].pageX = window.pageXOffset;
        document.layers['NS_footer'].pageY = window.pageYOffset + window.innerHeight - 92; 
    }
    else if (document.all) {  //IE 4 and above
        document.all['NS_footer'].style.posLeft = document.body.scrollLeft;
        document.all['NS_footer'].style.posTop = document.body.scrollTop + document.body.clientHeight - 92;
    }
    setTimeout('NonScrollFooter()',100);
}


function CleanWin(url_strng, Winame, Scrl, Wintops, Winleft, Winheight, Winwidth )
{
var W_basic = "'location=no";
W_basic += ",toolbar=no";
W_basic += ",menubar=no";
W_basic += ",status=no";
W_basic += ",scrollbars=";
W_basic += Scrl;
W_basic += ",resizable=yes";
W_basic += ",top=";
W_basic += Wintops;
W_basic += ",left=";
W_basic += Winleft;
W_basic += ",width=";
W_basic += Winwidth;
W_basic += ",height=";
W_basic += Winheight;
W_basic += "'";

whw=window.open(url_strng, Winame, W_basic);
whw.focus();
}
