// functions keeps the URL from caching 
function DontCacheURL(url) {
   var aDate = new Date();
   var uri = url + "?ts=" + aDate.getTime();
	
   window.location.href(uri);
}

