function NoFrames() {
    if (top.frames.length > 1) {
        top.location="/";
    }
    return true;
}

addEvent(window,'load',NoFrames);

