

// Author: Susan L. Bolander, Webworks7 (www.webworks7.com), except where otherwise noted
// Date: October 2006






// --------- Prevent this site from being framed ----------------

if(window != top)
{
  if(history.length==0)
  {
    top.location = self.location
  }
  else
  {
    window.open(location.href);
    history.go(-1);
  }
}

