// Utility.js
//
// SUMMARY
//
// This is a set of JavaScript functions
//
//
//The frameMe() function will force this html page to 
//render itself within the index2.html frameset even if the user 
// tries to go to this page directly.
function frameMe(s_frame){
  var frameset = "index2.html"; //name of the frameset page
  var frame = "FBODY"; //name of the frame to load document into
  if (s_frame.length > 0) {frame = s_frame}
  page = new String(self.document.location);
  var pos = page.lastIndexOf("/") + 1;
  var file = page.substr(pos);
  if(window.name != frame){
  var s = frameset + "?" + file + "&" + frame;
  top.location.replace(s);
 }
 return;
}

