Как вариант можно поступить так:
document.open(document.location,document.title)
Проверено, работает
P.S. Применялось в функции распечатки окна:
function PrintPage(){
document.getElementById('Link').innerText=""; //скрываем ссылку
window.print(); //Печатаем содержимое
document.open(document.location,document.title); //Отображаем ссылку
}