// This script breaks frames and open a specified page
// Designed to send cached files to the webpage of your choice
//
// Set myURL to the fully qualified target url
// Insert this script in the head section of your web page

function jumpOut( newURL )
{
    if ( top.location.href.indexOf( 'cottonhills' ) < 1 )
        top.location.replace( newURL );
}

//set to the url you want to display
myURL = 'http://cemetery.cottonhills.com';

//jumpOut( myURL );
