I just added a math.random() object to my document.location statement to generate a unique url and prevent the page from being cached.
document.location="http://www.my/project/site/" +Math.random()+"";
The code produces the desired unique url, but I don't know how to test to verify that the page is not being cached. Is there a javascript method that can detect whether or not a page is a cached page?