How to reload Main Page from within an iFrame
If the parent's and child iframe domains will be different you will get cross-window security error, in that case you can try to use following:
window.parent.location = document.referrer;
window.top.location.reload();
window.parent.location.reload();