
/************************************************/
// Framebusting Section 
// Added CRB 4/12/2002


if (top.location == self.location)
{

   var re = /(.*)(\.html)/;
   var loc = self.location;
  // alert(loc);

 var regex = new RegExp( re );
 var results = regex.exec(loc);

 var newloc = results[1] + "_f" + results[2];
 //  alert(loc + " -:- " +newloc);
  self.location = newloc;
}


