/**
 * This version of the refresh function will be invoked
 * for browsers that support JavaScript version 1.2
 *
 *
 * The argument to the location.reload function determines
 * if the browser should retrieve the document from the
 * web-server.  When all we need to do is cause
 * the JavaScript block in the document body to be
 * re-evaluated, we use 'false'. If we needed to pull the document from
 * the web-server again (such as where the document contents
 * change dynamically) we would pass the argument as 'true'.
 *
 *
 *
 * @author     Franklin Heilbron
 * @copyright  Frontier Information Technologies
 * @see        http://grizzlyweb.com/webmaster/javascripts/refresh.asp#version2
 * @package    Robin
 **/
<!--
function Refresh()
{
    window.location.reload( true );
}
//-->