/*
 *  Refresh the Page JavaScript
 *  20080508 - Blend Interactive
 */

var uri = unescape(window.location.pathname);

function refresh()
{
    if (window.location.reload( true )){
        return;
    }
    else {window.location.href = uri; return;}
}