// (c) 2000 M.O'Neill - mark@i27.com
function displayMessage(title, errorMsg) {

   alert("INFORMATION" + '\n' +
         '---------------------------------------------------------------------\n' +
         'The following fields marked with » require\n' +
         'you to enter a value before this form\n' +
         'can be submitted:\n' +

          errorMsg + '\n\n' +

         'Please complete those fields and re-submit.\n' +
         '---------------------------------------------------------------------');
}