<!-- noFrames.js
// This JavaScript doesn't allow the page inside of a frame. 
 if (top.location != self.location) // if this page is not being shown on the parent window 
{    
    top.location = self.location;  // then open it up on the parent window. 
}
//--> 
