// JavaScript Document

 
         function confirmLeap(Dest) {
    var leap = confirm("WARNING: You are exiting from the National Business Center's Web site.  The destination you have chosen is not under the control of the National Business Center or the Department of the Interior, and its contents cannot be guaranteed.  Do you wish to continue?")
    if (leap == true){
        document.location=Dest;
    }
}       

 
  function open_window(url){
  mywin=
 window.open(url,"win",'toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=1,resizable=0,screenX=0,screenY=0,top=0,left=0,width=520,height=410');}
