/*
	Copyright 2008 Jeremy Mallin LLC.
	Exclusive, non-transferrable use provided to website owner without warranty.
	Author is not responsible for changes made by website owner or third-parties.
	
	Prevents document from being loaded within FRAME elements.
*/
// Function to break out of frames.
function killFrames(){
	if (top.location != location) {
		top.location.href = document.location.href ;
	}
}