if (self != top) {
    if (document.images)
        top.location.replace(window.location.href);
    else
        top.location.href = window.location.href;
}

// Turn hash into query
newLocation="";

if(location.hash != "")
{
	newLocation = location.href;
	newLocation = newLocation.replace("?","&");
	newLocation = newLocation.replace("#","?");
	location.replace(newLocation);
}