//Make sure that this side frame isn't the top frame
if (self == top) {
	if (self.stop != null) self.stop();
	top.location = "index.html";
}

//Reload if resized
window.onresize = sideresized;
function sideresized()
{
	location.href=location.href;
}
