﻿function addLeadingZero( item )
{
    var returning = "";
    if( item < 10 )
    {
        returning = "0" + item;
    }
    else
    {
        returning = item;
    }
    return returning;
}
function loadForecastTablePage( )
{
    var type = $("#forecastTableSelect").val();
    if( type == -1 || type == "-1" )
        return;
    window.location = "/dismal/pro/data/outlook.asp?type=" + type;
}
function goCentralBank( )
{
    var bankId = $("#centralBankSelect").val();
    if( bankId == -1 || bankId == "-1" )
        return;
    window.location = "/dismal/pro/centralbanks.asp?bankid=" + bankId;
}

