function ExitPg(type) 
    {
    // the Exiting Corps Web disclaimer, window closes in 9 seconds
    
    ExitWindow = window.open("","","top=25,left=0,height=275,width=425")
    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 New Orleans District Web site</FONT><HR><BR>"
    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 exercise any editorial control over "
    newContent += "the information you may find at this location. This link is provided consistent with the stated purpose of the New Orleans Distrist Internet web site."
    newContent =  newContent + "<scr" + "ipt LANGUAGE=\"JavaScript\">timerid = setTimeout(\"self.close()\",16000)</scr" + "ipt>" 
    newContent += "</BODY></HTML>"
  
    // write HTML to new window document
    ExitWindow.document.write(newContent)
    ExitWindow.document.close() // close layout stream


   

    }
}

