
function aia311Warning() {

  var msg = "\nThe alternative AIA 312 forms are to be used only when specifically requested by the obligee\n" +
            "and only after approval by an authorized Great American Bond Division employee.\n\n" +
            "Click 'OK' to acknowledge that you have read the statement above and are\nauthorized to use the AIA 312 form.\n\n";

  if (confirm(msg))
    return true;
  else
    return false;

}