//---------------------------------------------------------------
// This script should be included in files destined for the main frame.
// It ensures the file appears in the proper frameset if loaded by itself.

sLoc=window.location.href;

if (top.location.href==sLoc){
  //-------------------------------------------------------------
  // Retrieve file name only-NS3 does not allow "file://" in URL

  iLastBack = sLoc.lastIndexOf('\\');
  iLastForw = sLoc.lastIndexOf('/');
  iLastSlash=( (iLastForw > iLastBack) ? iLastForw : iLastBack );
  sFName = sLoc.substring(iLastSlash+1);

  //-------------------------------------------------------------
  // Navigate to default.htm and pass it the name of the current file.

  top.location.href="index.htm";
}
