/* frame buster */
breakOut = function () {
    if ( window.parent && (window.parent.document.location.href != document.location.href) ) {
        window.parent.document.location.href = document.location.href;
    }
    else if ( window.top && (window.top.document.location.href != document.location.href ) ) {
        window.top.document.location.href = document.location.href;
    }
    return;
}

//breakOut();
