// Function to break out of third-party frames.
function killFrames(){
	if (top.location != location) {
		top.location.href = document.location.href ;
	}
}
