<!-- BEGIN hiding the script from browsers not supporting JavaScript

/* BEGIN Function: windowApplyOnline 
      Purpose: Opens a new window positioned at the top left 
      corner of the screen rendered without the menubar, 
	  toolbar, location box, and statusbar for the display of 
	  the eRecruit web application. 

      Example: The function is called from the href attribute 
	  of an anchor tag. The target attribute must be included 
	  so the eRecruit window opens on _top of the parent 
	  browser window. 

      <a title="NSA Applicant Homepage opens in a separate window" href="javascript:windowApplyOnline();" target="_top">Apply Online</a> 

      */

      function windowApplyOnline() {
         window.open("https://www.nsa.gov/psp/applyonline/EMPLOYEE/HRMS/c/HRS_HRAM.HRS_CE.GBL?Page=HRS_CE_HM_PRE&Action=A&SiteId=1", "ApplyOnline", "top=0,left=0,screenX=0,screenY=0,resizable,scrollbars");
      }
		
   <!-- Hide the script from old browsers --
	function OpenPage1(page) {
		var NewWindow=open('','popup','width=500,height=500,top=0,left=0,screenX=0,screenY=0,resizable,scrollbars');
	NewWindow.focus();
	    window.open(page,target="popup");
  }
  

/* END Function: windowApplyOnline */

// END hiding the script -->


