
// --- Frameset Check Control Program ---

// --- Description:
// This javascript program
// is to ensure that the page is not displayed independently or on its own outside of the
// web sites primary frameset and through the web site's main front door.  
// If direct access or side-door access is attempted, then the primary frameset page is rendered.

if (!((typeof(top.MainDoorCode) == "string") && (top.MainDoorCode == "lcc2006bhi"))) {
  top.location = "../bhi_multimediagallery.htm";
  }

