function ExitCorpsWeb() 
    {
    // Function should be linked into every href anchor via on onclick to display a window with
    // the Exiting Corps Web disclaimer, window cloases in 6 seconds
    // Function developed by Ralph Scheid, 21-Aug-1998

    ExitWindow = window.open("","","top=100,left=100,height=165,width=340")
    
    if (ExitWindow != null) {
        // assemble content for new window
        var newContent = "<HTML><HEAD><TITLE>Exiting Corps Web</TITLE></HEAD>"
    
    newContent += "<BODY bgcolor=\"#FFFFFF\"> <BASEFONT SIZE=\"2\"><FONT FACE=\"ARIAL\">"
    newContent += "<FONT SIZE=\"+2\" color=\"#FF0066\">You are Exiting the CorpsWeb</FONT><HR>"
    newContent += "The appearance of this hyperlink does not constitute endorsement by the U.S. Army Corps of Engineers (USACE) of this web "
    newContent += "site or the information, products or services contained therein. USACE does not excercise any editorial control over "
    newContent += "the information you may find at this location. This link is provided consistent with the stated purpose of CorpsWeb."
    newContent =  newContent + "<scr" + "ipt LANGUAGE=\"JavaScript\">timerid = setTimeout(\"self.close()\",6000)</scr" + "ipt>" 
    newContent += "</BODY></HTML>"
  
    // write HTML to new window document
    ExitWindow.document.write(newContent)
    ExitWindow.document.close() // close layout stream
    }
}
