function check()
{
a = top.location

b = a.toString()
c = b.lastIndexOf("/")+1
l = b.length
d = b.slice(c,l);
 if (d != "index.html")
 {
 window.location = "../index.html"
 }
}
onload = check