
function thisismysite() {
    if (self != top)
    window.open("http://www.gannett.co.nz","_top","");
    /*
    var d;
    
    try { 
    
        d = top.domain;
        alert (d);
    } catch (err) {
        alert ('got ya!');
        top.location.href='www.gannett.co.nz';
    }
    */
    //alert (top.domain + '???' + document.domain);
    
    //alert ( self.location.href + ' = ' + top.location.href);
    //if (top.location.href != self.location.href) top.location.href='www.gannett.co.nz';
    
}

self.onload =  thisismysite;



