It's probably because your browser has cached the page. You can try two things. Go to Tools|Internet Options|General Tab - middle section - settings. Change to 'every time you visit page'.
Or add a query string to the url:
Code:
function nav()
{
var sBaseUrl = "http://localhost/dashboard/dashreport/current/testmarc0704.xls";
var dt = new Date();
var iRandomInt = dt.valueOf();
var sFullUrl = sBaseUrl + "?q=" + iRandomInt;
var a=window.open(sFullUrl);
}
--
Joe