var sURL = unescape(window.location.pathname);

function refresh()
{
    window.location.href = sURL;
}

<script language="JavaScript1.1">
function refresh()
{
    window.location.replace( sURL );
}

function refresh()
{
    window.location.reload( false );
}