function frameMe(){
if (self == top) {
    if (document.images)
        top.location.replace("index.html");
    else
        top.location.href = "index.html";
}
}
frameMe();