var sURL = unescape(window.location.pathname);
var url = "";

function doLoad(theUrl)
{
	  url = theUrl;
    // the timeout value should be the same as in the "refresh" meta-tag
    setTimeout( "refresh()", 10*1000 );
}

function refresh()
{
    //  This version of the refresh function will cause a new
    //  entry in the visitor's history.  It is provided for
    //  those browsers that only support JavaScript 1.0.
    //
    window.location.href = url;
}