// ---------------------------------------------------------------------------
//  Filename: noframe.js
//   Version: 3.0
//      Date: 2/1/2007
//    Author: B. Zink
//   Purpose: javascript to insure this does not sit in another's frame
// ---------------------------------------------------------------------------
// Copyright© 2004-2010 BRZ, Inc. - All Rights Reserved
// ---------------------------------------------------------------------------
// Note: NO portion of this code may be copied, manipulated, viewed, or used
//       in ANY way without express written permission of the author and
//       Brz, Inc.
// ---------------------------------------------------------------------------
// Revisions:
//
// 1. 2/1/2007 - bz
//    3.0.0 - Initial creation
// ---------------------------------------------------------------------------
if (top.frames.length!=0)
   top.location=self.document.location;
