function sleep(delay)
// http://www.ozzu.com/programming-forum/javascript-sleep-function-t66049.html
{
    var start = new Date().getTime();
    while (new Date().getTime() < start + delay);
}
 
function popup_disclaimer() {
// New function AC 2008/11/3 
// Based on this: http://www.htmlite.com/JS006.php 
// and this: http://www.mdhousing.org/website/cda_bonds/cdabonds.aspx
// and this: http://www.quirksmode.org/js/events_early.html
sleep(500);
var answer = confirm ("I acknowledge that I am entering an area of the website for historical archived documents; that each archived documents speaks only as of its date; and that the STO has undertaken no obligation to update the information.")
if (!answer) 
  { return false; }
}  

