var sThisURL = unescape(window.location.pathname);

function doFramesBuster() {
    if ( top != self ) {
        breakFrames();
    }
}

function breakFrames() {
    setTimeout( "top.location.href = sThisURL", 1.5*1000 );
}

function breakFrames() {
    top.location.replace( sThisURL );
}

if ( "MSIE" == navigator.appName ) {
    doFramesBuster();
}