/*  	removeFrames() 
 *
 *	Makes sure this page is not embedded in another page.
 */
function removeFrames()
{
	if(top && self && top.location && self.location)
	{
		if(top != self)
			top.location.replace(self.location);
	}
}
