function shake2() {
if (self.moveBy) {
for (i = 5; i > 0; i--) {
for (j = 5; j > 0; j--) {
self.moveBy(0,i);
setTimeout("50");
self.moveBy(i,0);
setTimeout("50");
self.moveBy(0,-i);
setTimeout("50");
self.moveBy(-i,0);
setTimeout("50");
}
}
}
}
function selfCheck()
{
 if (self.location != top.location)
 top.location = self.location;
}
selfCheck();
