function exitMsg(name, url)
{
  message=window.open();
  message.document.writeln("<!DOCTYPE HTML PUBLIC '-//IETF//Dtd HTML//EN'>");
  message.document.writeln("<html><head><title>Exit Message</title>");
  message.document.writeln("<SCRIPT>function goAway() {window.location.href='" + url +"'} </SCRIPT>");
  message.document.writeln("<!-- ******** External Stylesheet for all pages ********-->");    
  message.document.writeln("<link rel='Stylesheet' href='/style/CBW.css' type='text/css'>");
  message.document.writeln("</head>");
  message.document.writeln("<body class='popup'>");
  message.document.writeln("<CENTER><H1><font face='arial, sans serif'>Are you sure you want to leave the <i>CBW Corner</i>?</font></H1></CENTER>");
  message.document.writeln("<P><font face='arial, sans serif'>You are about to leave the <i>CBW Corner</i> and go to  <b>" + name + "</b>.");
  message.document.writeln("<P>The appearance of this hyperlink does not constitute an endorsement by the Defense Treaty Inspection Readiness Program (DTIRP) of this Web site or the information, products, or services contained therein, nor does the DTIRP exercise any editorial control over the information you may find at this Web site. These links are provided consistent with the stated purpose of this Department of Defense (DoD) Web site.</font>");
  message.document.writeln("<CENTER><FORM>")
  message.document.writeln("<INPUT TYPE='button' NAME='stay' VALUE='Stay'");
  message.document.writeln("onClick='window.close()'>");
  message.document.writeln("<INPUT TYPE='button' NAME='leave' VALUE='Leave'");
  message.document.writeln("onClick='goAway()'>");
  message.document.writeln("</FORM></CENTER>");
  message.document.writeln("<center></center>");
  message.document.writeln("</body></html>");
  message.document.close();
}