function camping(type) 
    {
    // the Exiting Corps Web disclaimer, window closes in 9 seconds
    
    ExitWindow = window.open("","","top=25,left=0,height=190,width=375")
    if (ExitWindow != null) {
        // assemble content for new window
        var newContent = "<HTML><HEAD><TITLE>Camping at Bonnet Carré Spillway</TITLE></HEAD>"
    
    newContent += "<BODY bgcolor=\"#FFFFFF\"> <BASEFONT SIZE=\"3\"><FONT FACE=\"ARIAL\">"
    newContent += "<FONT SIZE=\"+1\" color=\"#FF0066\">Camping at the Bonnet Carré Spillway</FONT><HR>"
    newContent += "Primitive camping is available in the St. Charles Parish recreation area located just north "
    newContent += "of Airline Highway at the Lower Guide Levee (on the Norco side of the spillway). A "
    newContent += "camping permit is required. The permit is free and can be obtained by calling the St. "
    newContent += "Charles Recreation Department at <br> 985-783-5090 Monday – Friday."
    newContent =  newContent + "<scr" + "ipt LANGUAGE=\"JavaScript\">timerid = setTimeout(\"self.close()\",30000)</scr" + "ipt>" 
    newContent += "</BODY></HTML>"
  
    // write HTML to new window document
    ExitWindow.document.write(newContent)
    ExitWindow.document.close() // close layout stream
    }
}
