// Copyright 2005 by QuantMethods

function postDemoNotice()
{
    // The following alert encodes a contact e-mail address obscured
    // to prevent it from being harvested by spammers.

    alert( "This is a static demonstration of the\n" +
           "Quantitative Methods Software (QMS)\n" +
           "application.  Changing the input\n" +
           "values on the problem pages will have\n" +
           "no effect on the solutions shown.\n\n" +
           "For full access to the application,\n" +
           "please contact:\n\n" +
           "      " +
           String.fromCharCode( 115, 97, 108, 101, 115, 64 ) +
           String.fromCharCode( 113, 117, 97, 110, 116, 109 ) +
           String.fromCharCode( 101, 116, 104, 111, 100, 115 ) +
           String.fromCharCode( 46, 99, 111, 109 ) );

    return true;
}

