/*
	break out of frames
	how dare they!

	;o)
	(or

	© 2003-> (or @ corz.org ;o)

	changes:
	
		10-08 I've started allowing certain containers.
*/


//	parent.location.href = location.href;


/*

not for opera..


var breakOUT = true;
var goodContainers = ['corz', 'stumbleupon.com', '/translate_', 'google', 'msncache', 'search.live.com'];

if (parent.frames.length > 0) {
	if (document.referrer && document.referrer != "") {
		for (i in goodContainers) {
			if (document.referrer.indexOf(goodContainers[i]) != -1) { 
				breakOUT = false; 
				break;
			}
		}
		if (breakOUT == true) {
			parent.location.href = location.href;
		}
	}
}
*/