/////////////////////////////////////////////////////////////////////////////
//                                                                         //
//  Pop-Up Information Windows                                 2004-08-02  //
//                                                                         //
//  Copyright (c) 2004, R.S. Digital Solutions, All rights reserved.       //
//                                                                         //
//  Produced for R.D. Swift & Associates Consulting Inc.                   //
//                                                                         //
//  Description:                                                           //
//                                                                         //
//  This is a collection of pop-up windows used on the Swift & Associates  //
//  web site.                                                              //
//                                                                         //
/////////////////////////////////////////////////////////////////////////////


/////////////////////////////////////////////////////////////////////////////
//                                                                         //
//    Open a Copyright Notice Window                                       //
//                                                                         //
/////////////////////////////////////////////////////////////////////////////

function Copyright() {
  window.alert("COPYRIGHT NOTICE\n \n"
             + "All of the material contained on this site is the property of\n"
             + "R.S. Digital Solutions, all rights reserved.\n \n"
             + "Permission to reproduce any material from this site is required\n"
             + "in writing from the Webmaster (webmaster@rsds.ca)\n"
             + "or by mailing a written request to:\n \n"
             + "     R.S. Digital Solutions\n"
             + "     5708 - 47th Street\n"
             + "     Stony Plain, Alberta\n"
             + "     Canada, T7Z 1C6\n \n"
             + "Thank-you for respecting this copyright notice.");
}


/////////////////////////////////////////////////////////////////////////////
//                                                                         //
//    Open a Privacy Notice Window                                         //
//                                                                         //
/////////////////////////////////////////////////////////////////////////////

function Privacy() {
  window.alert("PRIVACY STATEMENT\n \n"
             + "We respect your right to privacy. Your email address or any information\n"
             + "that you give us will be kept strictly confidential and will never be\n"
             + "shared with any third party or outside entity.  Any information collected\n"
             + "will be discarded once the relevant issue is resolved.\n \n"
             + "We do not send unsolicited email (spam), although we may maintain a\n"
             + "mailing list for announcements and newsworthy items.  Addition to any\n"
             + "mailing list is not done automatically, and additions will only be done at\n"
             + "the request of the user.  Removal from any lists is done promptly at the\n"
             + "request of the user.  A single message will be sent to confirm the removal.\n \n"
             + "We do not use cookies on this system other than as required for the proper\n"
             + "display of the site information.  We do not collect and use demographic\n"
             + "or statistical information from or about visitors to this site, other than\n"
             + "the standard statistical information collected by our site host.  This\n"
             + "includes general aggregate information such as number of hits on each page,\n"
             + "traffic by time of day and day of week, and type of browser used.  We do\n"
             + "not sell or otherwise market any information collected.  This information\n"
             + "is only used internally to evaluate the effectiveness of our web site.\n \n"
             + "We do not link to banner advertising nor will any pages on our site\n"
             + "activate any unwanted automatic pop-up windows or browser ads.\n \n"
             + "If you have any questions, comments, or concerns regarding this Privacy\n"
             + "Statement, please send us a note.  Input and feedback is always welcome.");
}


///////////////////////////////////////////////////////////////////////////
//                                                                       //
//   End of File                                                         //
//                                                                       //
///////////////////////////////////////////////////////////////////////////

