//****************************************************************************************
//********* Copyright (c) 1998-2000, Gilltech Consulting Inc.           **************
//****************************************************************************************
// File:        always_on_top.js
// Description: javascript to force the current web page to always be on top
//****************************************************************************************
// Force this page to always be on top
// This is required if this script is called from hidden frame on index.cfm or about.cfm
   if(top != self){
      top.location = location;
   }

