// kk_antigrab_coc.js
// created by Kaoru Kibou 2007-12-10
// for use with loglikelihood.com only
// well... at least you may take my code as an inspiration :) got it?

// this script implements two security features
// i. prevents sites from being frame-grabbed by sites that are not allowed to
// ii. makes sure you always view the full site and not just single frames

if (top.location.href != "http://www.loglikelihood.com/index.html" && top.location.href != "http://www.loglikelihood.com" && top.location.href != "http://www.loglikelihood.com/") {
    top.location.href = "http://www.loglikelihood.com/index.html";
}
