/**
 * This version of the refresh function will be invoked
 * for browsers that support JavaScript version 1.0
 *
 *  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.
 *
 *
 *
 * @author     Franklin Heilbron
 * @copyright  Frontier Information Technologies
 * @see        http://grizzlyweb.com/webmaster/javascripts/refresh.asp#version2
 * @package    Robin
 **/
<!--
var sURL = unescape(window.location.pathname);

function DoLoad()
{
    // the timeout value should be the same as in the "refresh" meta-tag
    setTimeout( "Refresh()", 60*1000 );
}

function Refresh()
{
    window.location.href = sURL;
}
//-->

