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


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


  function refresh()
  {
      window.location.replace( sURL );
  }

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

