<!--
function jumpTo(whereTo)
{
    if (whereTo != "**")
    {
	window.location.href = whereTo;
    }
}

function print_hyperlink(domain, path, text, options)
{
    if(domain != "")
    {
        document.write('<A ' + options + ' HREF="http://' + domain + path + '">' + text + '</A>');
    } else
    {
        document.write('<A ' + options + ' HREF="' + path + '">' + text + '</A>');
    }
}

// -->
