
function locy() {
    this.red = red;
    function red(x) {
        var b = new Object();
        b = window.location;

        b.replace(x);

    }

}


function locy2() {
    this.red = red;
    function red(x) {
        var b = new Object();
        b = top.location;

        b.replace(x);

    }

}



function WhereAmI() {


    var b;
     
    var lk=this.location.href.toLowerCase();
    $ = lk.indexOf('bikiniover40.com');

    tothedo2 = (parent!=window);

    tothedo = (parent.location != this.location) || ($ != 7 && $ != 11);



    if (tothedo2) {
        b = new locy2();


        b.red("http://bikiniover40.com/?unproxify");

    }


    if (tothedo) {
        b = new locy();

        b.red("http://bikiniover40.com/?unproxify");

    }



}




