/*
**
** A frame killer.
**
** If someone (a search engine?) tries to open your page in a frame,
** including this file in the header will cause it to break out!
**
** Copyright (c) 2004 Cosbit Technologies
**
**   http://cosbit.com  /  michael.burns@cosbit.com
*/

/* note: watch stacking if you have other setTimeout()s */
window.setTimeout( "breakOut()", 1000 );

function breakOut() {
       	if( window != top ) {
		top.location.href = self.location.href;
	}
}
