

// ===================================================================================
//  js_cookiefuncs
// ===================================================================================
function geber_lib_CookieClass()
{
    this.defaultPath = "";
}


geber_lib_CookieClass.prototype.setRaw = function(cookieString)
{
    document.cookie = cookieString;
}

geber_lib_CookieClass.prototype.getRaw = function()
{
    return document.cookie.toString();
}



geber_lib_CookieClass.prototype.setValue = function(name, value, expires, path, domain, secure) {
  var curCookie = name + "=" + escape(value) +
      ((expires) ? "; expires=" + expires.toGMTString() : "") +
      ((path)    ? "; path=" + path : "; path=" + this.getDefaultPath()) +
      ((domain)  ? "; domain=" + domain : "") +
      ((secure)  ? "; secure" : "");

  this.setRaw(curCookie);
}



geber_lib_CookieClass.prototype.getValue = function(name) {

  var dc = this.getRaw();
  if (!dc) return null;

  var prefix = name + "=";
  var begin = dc.indexOf("; " + prefix);
  if (begin == -1) {
    begin = dc.indexOf(prefix);
    if (begin != 0) return null;
  } else
    begin += 2;
  var end = dc.indexOf(";", begin);
  if (end == -1)
    end = dc.length;
  return unescape(dc.substring(begin + prefix.length, end));
}



geber_lib_CookieClass.prototype.deleteValue = function(name, path, domain) {
  if (geber_getCookie(name)) {
    this.setRaw(name + "=" +
    ((path)    ? "; path=" + path : (this.defaultPath != "" ? "; path=" : "") + this.defaultPath) +
    ((domain)  ? "; domain=" + domain : "") +
    "; expires=Thu, 01-Jan-70 00:00:01 GMT");
  }
}

geber_lib_CookieClass.prototype.setDefaultPath = function(path)
{
    if (typeof(path) == 'string' && path.length > 0)
       this.defaultPath = path;
    else
       this.defaultPath = "";
}

geber_lib_CookieClass.prototype.getDefaultPath = function()
{
    if (this.defaultPath && typeof(this.defaultPath) == 'string' && this.defaultPath.length > 0)
        return this.defaultPath;
    else
    {
        var myCookiePath = geber_lib_getBaseURLPath();
        myCookiePath = myCookiePath.replace(new RegExp("/(de|en|fr|it|es|nl)/?$", "i"), "");
        return myCookiePath;
    }
}
// -----------------------------------------------------------------------------------------------
// history
// -----------------------------------------------------------------------------------------------
var geber_histroyCookieName = "geberHistory";
var geber_historyPages = new Array();


geber_historyPages[3115] = new Object();
geber_historyPages[3115].title = "Sitemap";
geber_historyPages[3115].path = "/servicepages/sitemap";


geber_historyPages[3276] = new Object();
geber_historyPages[3276].title = "Preface";
geber_historyPages[3276].path = "/preface";

geber_historyPages[3278] = new Object();
geber_historyPages[3278].title = "Preface from the CEO";
geber_historyPages[3278].path = "/preface/prefacefromtheceo";

geber_historyPages[3460] = new Object();
geber_historyPages[3460].title = "Letter from the Chairman of the Supervisory Board";
geber_historyPages[3460].path = "/preface/letterfromthechairmanofthesupervisoryboard";

geber_historyPages[4343] = new Object();
geber_historyPages[4343].title = "A word of thanks to our employees ";
geber_historyPages[4343].path = "/preface/awordofthankstoouremployees";

geber_historyPages[3458] = new Object();
geber_historyPages[3458].title = "BA-CA Group overview";
geber_historyPages[3458].path = "/ba-cagroupoverview";

geber_historyPages[3464] = new Object();
geber_historyPages[3464].title = "Key figures";
geber_historyPages[3464].path = "/ba-cagroupoverview/keyfigures";

geber_historyPages[3472] = new Object();
geber_historyPages[3472].title = "Key figures shares";
geber_historyPages[3472].path = "/ba-cagroupoverview/keyfigures/keyfiguresshares";

geber_historyPages[3484] = new Object();
geber_historyPages[3484].title = "Income statement - 4 years";
geber_historyPages[3484].path = "/ba-cagroupoverview/keyfigures/incomestatement-4years";

geber_historyPages[3494] = new Object();
geber_historyPages[3494].title = "Balance sheet - 4 years";
geber_historyPages[3494].path = "/ba-cagroupoverview/keyfigures/balancesheet-4years";

geber_historyPages[3514] = new Object();
geber_historyPages[3514].title = "Income statement CEE";
geber_historyPages[3514].path = "/ba-cagroupoverview/keyfigures/incomestatementcee";

geber_historyPages[3470] = new Object();
geber_historyPages[3470].title = "Highlights 2004";
geber_historyPages[3470].path = "/ba-cagroupoverview/highlights2004";

geber_historyPages[3486] = new Object();
geber_historyPages[3486].title = "Awards 2004";
geber_historyPages[3486].path = "/ba-cagroupoverview/awards2004";

geber_historyPages[3496] = new Object();
geber_historyPages[3496].title = "Boards";
geber_historyPages[3496].path = "/ba-cagroupoverview/boards";

geber_historyPages[3518] = new Object();
geber_historyPages[3518].title = "Erich Hampel";
geber_historyPages[3518].path = "/ba-cagroupoverview/boards/erichhampel";

geber_historyPages[3534] = new Object();
geber_historyPages[3534].title = "Wolfgang Haller";
geber_historyPages[3534].path = "/ba-cagroupoverview/boards/wolfganghaller";

geber_historyPages[3540] = new Object();
geber_historyPages[3540].title = "Willibald Cernko";
geber_historyPages[3540].path = "/ba-cagroupoverview/boards/willibaldcernko";

geber_historyPages[3562] = new Object();
geber_historyPages[3562].title = "Stefan Ermisch";
geber_historyPages[3562].path = "/ba-cagroupoverview/boards/stefanermisch";

geber_historyPages[3570] = new Object();
geber_historyPages[3570].title = "Willi Hemetsberger";
geber_historyPages[3570].path = "/ba-cagroupoverview/boards/willihemetsberger";

geber_historyPages[3572] = new Object();
geber_historyPages[3572].title = "Regina Prehofer";
geber_historyPages[3572].path = "/ba-cagroupoverview/boards/reginaprehofer";

geber_historyPages[3576] = new Object();
geber_historyPages[3576].title = "Johann Strobl";
geber_historyPages[3576].path = "/ba-cagroupoverview/boards/johannstrobl";

geber_historyPages[3516] = new Object();
geber_historyPages[3516].title = "Report of the Supervisory Board";
geber_historyPages[3516].path = "/ba-cagroupoverview/reportofthesupervisoryboard";

geber_historyPages[3538] = new Object();
geber_historyPages[3538].title = "Focus of activity";
geber_historyPages[3538].path = "/ba-cagroupoverview/reportofthesupervisoryboard/focusofactivity";

geber_historyPages[3560] = new Object();
geber_historyPages[3560].title = "Board members";
geber_historyPages[3560].path = "/ba-cagroupoverview/reportofthesupervisoryboard/boardmembers";

geber_historyPages[3574] = new Object();
geber_historyPages[3574].title = "Financial statements";
geber_historyPages[3574].path = "/ba-cagroupoverview/reportofthesupervisoryboard/financialstatements";

geber_historyPages[3564] = new Object();
geber_historyPages[3564].title = "Organisation Chart";
geber_historyPages[3564].path = "/ba-cagroupoverview/organisationchart";

geber_historyPages[3462] = new Object();
geber_historyPages[3462].title = "Business and Strategy";
geber_historyPages[3462].path = "/businessandstrategy";

geber_historyPages[3466] = new Object();
geber_historyPages[3466].title = "Banking Environment";
geber_historyPages[3466].path = "/businessandstrategy/bankingenvironment";

geber_historyPages[3482] = new Object();
geber_historyPages[3482].title = "Global economy and financial markets";
geber_historyPages[3482].path = "/businessandstrategy/bankingenvironment/globaleconomyandfinancialmarkets";

geber_historyPages[3508] = new Object();
geber_historyPages[3508].title = "Our core markets";
geber_historyPages[3508].path = "/businessandstrategy/bankingenvironment/ourcoremarkets";

geber_historyPages[3520] = new Object();
geber_historyPages[3520].title = "Austria";
geber_historyPages[3520].path = "/businessandstrategy/bankingenvironment/ourcoremarkets/austria";

geber_historyPages[3542] = new Object();
geber_historyPages[3542].title = "CEE";
geber_historyPages[3542].path = "/businessandstrategy/bankingenvironment/ourcoremarkets/cee";

geber_historyPages[3478] = new Object();
geber_historyPages[3478].title = "Financial targets";
geber_historyPages[3478].path = "/businessandstrategy/financialtargets";

geber_historyPages[3498] = new Object();
geber_historyPages[3498].title = "Medium-term planning process";
geber_historyPages[3498].path = "/businessandstrategy/financialtargets/medium-termplanningprocess";

geber_historyPages[3524] = new Object();
geber_historyPages[3524].title = "Value-based management";
geber_historyPages[3524].path = "/businessandstrategy/financialtargets/value-basedmanagement";

geber_historyPages[3546] = new Object();
geber_historyPages[3546].title = "Implementation";
geber_historyPages[3546].path = "/businessandstrategy/financialtargets/implementation";

geber_historyPages[3480] = new Object();
geber_historyPages[3480].title = "Risk Management";
geber_historyPages[3480].path = "/businessandstrategy/riskmanagement";

geber_historyPages[3500] = new Object();
geber_historyPages[3500].title = "Assessment";
geber_historyPages[3500].path = "/businessandstrategy/riskmanagement/assessment";

geber_historyPages[3522] = new Object();
geber_historyPages[3522].title = "Risk exposures";
geber_historyPages[3522].path = "/businessandstrategy/riskmanagement/riskexposures";

geber_historyPages[3548] = new Object();
geber_historyPages[3548].title = "Risk rating";
geber_historyPages[3548].path = "/businessandstrategy/riskmanagement/riskrating";

geber_historyPages[3566] = new Object();
geber_historyPages[3566].title = "Coverage ratio";
geber_historyPages[3566].path = "/businessandstrategy/riskmanagement/coverageratio";

geber_historyPages[3580] = new Object();
geber_historyPages[3580].title = "Risk structure by region";
geber_historyPages[3580].path = "/businessandstrategy/riskmanagement/riskstructurebyregion";

geber_historyPages[3598] = new Object();
geber_historyPages[3598].title = "Portfolio structure by sector";
geber_historyPages[3598].path = "/businessandstrategy/riskmanagement/portfoliostructurebysector";

geber_historyPages[3468] = new Object();
geber_historyPages[3468].title = "BA-CA on the Stock Markets";
geber_historyPages[3468].path = "/ba-caonthestockmarkets";

geber_historyPages[3474] = new Object();
geber_historyPages[3474].title = "Key figures BA-CA share";
geber_historyPages[3474].path = "/ba-caonthestockmarkets/keyfiguresba-cashare";

geber_historyPages[3490] = new Object();
geber_historyPages[3490].title = "Growth in value";
geber_historyPages[3490].path = "/ba-caonthestockmarkets/growthinvalue";

geber_historyPages[3502] = new Object();
geber_historyPages[3502].title = "Stock indices";
geber_historyPages[3502].path = "/ba-caonthestockmarkets/stockindices";

geber_historyPages[3544] = new Object();
geber_historyPages[3544].title = "Shareholder structure";
geber_historyPages[3544].path = "/ba-caonthestockmarkets/shareholderstructure";

geber_historyPages[3568] = new Object();
geber_historyPages[3568].title = "Communication";
geber_historyPages[3568].path = "/ba-caonthestockmarkets/communication";

geber_historyPages[3578] = new Object();
geber_historyPages[3578].title = "Investor Relations";
geber_historyPages[3578].path = "/ba-caonthestockmarkets/investorrelations";

geber_historyPages[3602] = new Object();
geber_historyPages[3602].title = "Dividend";
geber_historyPages[3602].path = "/ba-caonthestockmarkets/dividend";

geber_historyPages[3618] = new Object();
geber_historyPages[3618].title = "Corporate Governance";
geber_historyPages[3618].path = "/ba-caonthestockmarkets/corporategovernance";

geber_historyPages[3646] = new Object();
geber_historyPages[3646].title = "Transparency";
geber_historyPages[3646].path = "/ba-caonthestockmarkets/corporategovernance/transparency";

geber_historyPages[3664] = new Object();
geber_historyPages[3664].title = "Supervisory Board";
geber_historyPages[3664].path = "/ba-caonthestockmarkets/corporategovernance/supervisoryboard";

geber_historyPages[3668] = new Object();
geber_historyPages[3668].title = "Managing Board ";
geber_historyPages[3668].path = "/ba-caonthestockmarkets/corporategovernance/managingboard";

geber_historyPages[3670] = new Object();
geber_historyPages[3670].title = "Compliance and Code of Conduct";
geber_historyPages[3670].path = "/ba-caonthestockmarkets/corporategovernance/complianceandcodeofconduct";

geber_historyPages[3678] = new Object();
geber_historyPages[3678].title = "Evaluation";
geber_historyPages[3678].path = "/ba-caonthestockmarkets/corporategovernance/evaluation";

geber_historyPages[3476] = new Object();
geber_historyPages[3476].title = "Management Report";
geber_historyPages[3476].path = "/managementreport";

geber_historyPages[3488] = new Object();
geber_historyPages[3488].title = "Income statement";
geber_historyPages[3488].path = "/managementreport/incomestatement";

geber_historyPages[3504] = new Object();
geber_historyPages[3504].title = "Net interest income";
geber_historyPages[3504].path = "/managementreport/incomestatement/netinterestincome";

geber_historyPages[3550] = new Object();
geber_historyPages[3550].title = "Losses on loans and advances";
geber_historyPages[3550].path = "/managementreport/incomestatement/lossesonloansandadvances";

geber_historyPages[3586] = new Object();
geber_historyPages[3586].title = "Net fee and commission income";
geber_historyPages[3586].path = "/managementreport/incomestatement/netfeeandcommissionincome";

geber_historyPages[3600] = new Object();
geber_historyPages[3600].title = "Trading operations";
geber_historyPages[3600].path = "/managementreport/incomestatement/tradingoperations";

geber_historyPages[3622] = new Object();
geber_historyPages[3622].title = "General administrative expenses";
geber_historyPages[3622].path = "/managementreport/incomestatement/generaladministrativeexpenses";

geber_historyPages[3648] = new Object();
geber_historyPages[3648].title = "Other positions";
geber_historyPages[3648].path = "/managementreport/incomestatement/otherpositions";

geber_historyPages[3506] = new Object();
geber_historyPages[3506].title = "Results, profitability and growth";
geber_historyPages[3506].path = "/managementreport/resultsprofitabilityandgrowth";

geber_historyPages[3582] = new Object();
geber_historyPages[3582].title = "Results";
geber_historyPages[3582].path = "/managementreport/resultsprofitabilityandgrowth/results";

geber_historyPages[3604] = new Object();
geber_historyPages[3604].title = "Growth";
geber_historyPages[3604].path = "/managementreport/resultsprofitabilityandgrowth/growth";

geber_historyPages[3626] = new Object();
geber_historyPages[3626].title = "Proposal for the appropriation of profits";
geber_historyPages[3626].path = "/managementreport/resultsprofitabilityandgrowth/proposalfortheappropriationofprofits";

geber_historyPages[3530] = new Object();
geber_historyPages[3530].title = "Development of the business segments";
geber_historyPages[3530].path = "/managementreport/developmentofthebusinesssegments";

geber_historyPages[3584] = new Object();
geber_historyPages[3584].title = "Private Customers Austria";
geber_historyPages[3584].path = "/managementreport/developmentofthebusinesssegments/privatecustomersaustria";

geber_historyPages[3628] = new Object();
geber_historyPages[3628].title = "Corporate Customers Austria";
geber_historyPages[3628].path = "/managementreport/developmentofthebusinesssegments/corporatecustomersaustria";

geber_historyPages[3650] = new Object();
geber_historyPages[3650].title = "CEE";
geber_historyPages[3650].path = "/managementreport/developmentofthebusinesssegments/cee";

geber_historyPages[3672] = new Object();
geber_historyPages[3672].title = "International Markets";
geber_historyPages[3672].path = "/managementreport/developmentofthebusinesssegments/internationalmarkets";

geber_historyPages[3680] = new Object();
geber_historyPages[3680].title = "Corporate Center";
geber_historyPages[3680].path = "/managementreport/developmentofthebusinesssegments/corporatecenter";

geber_historyPages[3588] = new Object();
geber_historyPages[3588].title = "Balance sheet";
geber_historyPages[3588].path = "/managementreport/balancesheet";

geber_historyPages[3620] = new Object();
geber_historyPages[3620].title = "Assets";
geber_historyPages[3620].path = "/managementreport/balancesheet/assets";

geber_historyPages[3654] = new Object();
geber_historyPages[3654].title = "Liabilities";
geber_historyPages[3654].path = "/managementreport/balancesheet/liabilities";

geber_historyPages[3676] = new Object();
geber_historyPages[3676].title = "Capital resources";
geber_historyPages[3676].path = "/managementreport/balancesheet/capitalresources";

geber_historyPages[3606] = new Object();
geber_historyPages[3606].title = "Outlook";
geber_historyPages[3606].path = "/managementreport/outlook";

geber_historyPages[3624] = new Object();
geber_historyPages[3624].title = "Economic environment and financial markets";
geber_historyPages[3624].path = "/managementreport/outlook/economicenvironmentandfinancialmarkets";

geber_historyPages[3658] = new Object();
geber_historyPages[3658].title = "Economic developments core markets";
geber_historyPages[3658].path = "/managementreport/outlook/economicdevelopmentscoremarkets";

geber_historyPages[3674] = new Object();
geber_historyPages[3674].title = "Group outlook";
geber_historyPages[3674].path = "/managementreport/outlook/groupoutlook";

geber_historyPages[3492] = new Object();
geber_historyPages[3492].title = "Business Segments";
geber_historyPages[3492].path = "/businesssegments";

geber_historyPages[3510] = new Object();
geber_historyPages[3510].title = "Customer Business Austria";
geber_historyPages[3510].path = "/businesssegments/customerbusinessaustria";

geber_historyPages[3612] = new Object();
geber_historyPages[3612].title = "Stages of development and strategy";
geber_historyPages[3612].path = "/businesssegments/customerbusinessaustria/stagesofdevelopmentandstrategy";

geber_historyPages[3630] = new Object();
geber_historyPages[3630].title = "Fit for Sales";
geber_historyPages[3630].path = "/businesssegments/customerbusinessaustria/fitforsales";

geber_historyPages[3644] = new Object();
geber_historyPages[3644].title = "New segmentation";
geber_historyPages[3644].path = "/businesssegments/customerbusinessaustria/newsegmentation";

geber_historyPages[3652] = new Object();
geber_historyPages[3652].title = "Product policy";
geber_historyPages[3652].path = "/businesssegments/customerbusinessaustria/productpolicy";

geber_historyPages[3686] = new Object();
geber_historyPages[3686].title = "Financing activities";
geber_historyPages[3686].path = "/businesssegments/customerbusinessaustria/financingactivities";

geber_historyPages[3696] = new Object();
geber_historyPages[3696].title = "Investments";
geber_historyPages[3696].path = "/businesssegments/customerbusinessaustria/investments";

geber_historyPages[3712] = new Object();
geber_historyPages[3712].title = "Services and e-business";
geber_historyPages[3712].path = "/businesssegments/customerbusinessaustria/servicesande-business";

geber_historyPages[3528] = new Object();
geber_historyPages[3528].title = "International Corporates";
geber_historyPages[3528].path = "/businesssegments/internationalcorporates";

geber_historyPages[3608] = new Object();
geber_historyPages[3608].title = "Multinational Corporates";
geber_historyPages[3608].path = "/businesssegments/internationalcorporates/multinationalcorporates";

geber_historyPages[3632] = new Object();
geber_historyPages[3632].title = "Trade Finance";
geber_historyPages[3632].path = "/businesssegments/internationalcorporates/tradefinance";

geber_historyPages[3640] = new Object();
geber_historyPages[3640].title = "Structured Finance and Corporate Lending";
geber_historyPages[3640].path = "/businesssegments/internationalcorporates/structuredfinanceandcorporatelending";

geber_historyPages[3656] = new Object();
geber_historyPages[3656].title = "CA IB";
geber_historyPages[3656].path = "/businesssegments/internationalcorporates/caib";

geber_historyPages[3682] = new Object();
geber_historyPages[3682].title = "Real Estate Finance";
geber_historyPages[3682].path = "/businesssegments/internationalcorporates/realestatefinance";

geber_historyPages[3692] = new Object();
geber_historyPages[3692].title = "Leasing";
geber_historyPages[3692].path = "/businesssegments/internationalcorporates/leasing";

geber_historyPages[3552] = new Object();
geber_historyPages[3552].title = "International Markets";
geber_historyPages[3552].path = "/businesssegments/internationalmarkets";

geber_historyPages[3610] = new Object();
geber_historyPages[3610].title = "Strategic development";
geber_historyPages[3610].path = "/businesssegments/internationalmarkets/strategicdevelopment";

geber_historyPages[3634] = new Object();
geber_historyPages[3634].title = "Market segments";
geber_historyPages[3634].path = "/businesssegments/internationalmarkets/marketsegments";

geber_historyPages[3690] = new Object();
geber_historyPages[3690].title = "Interest rate and currency products";
geber_historyPages[3690].path = "/businesssegments/internationalmarkets/marketsegments/interestrateandcurrencyproducts";

geber_historyPages[3716] = new Object();
geber_historyPages[3716].title = "Asset/liability management";
geber_historyPages[3716].path = "/businesssegments/internationalmarkets/marketsegments/assetliabilitymanagement";

geber_historyPages[3720] = new Object();
geber_historyPages[3720].title = "Customer-driven treasury business";
geber_historyPages[3720].path = "/businesssegments/internationalmarkets/marketsegments/customer-driventreasurybusiness";

geber_historyPages[3732] = new Object();
geber_historyPages[3732].title = "Equities";
geber_historyPages[3732].path = "/businesssegments/internationalmarkets/marketsegments/equities";

geber_historyPages[3752] = new Object();
geber_historyPages[3752].title = "New issue business";
geber_historyPages[3752].path = "/businesssegments/internationalmarkets/marketsegments/newissuebusiness";

geber_historyPages[3756] = new Object();
geber_historyPages[3756].title = "Emerging Markets";
geber_historyPages[3756].path = "/businesssegments/internationalmarkets/marketsegments/emergingmarkets";

geber_historyPages[3638] = new Object();
geber_historyPages[3638].title = "International awards";
geber_historyPages[3638].path = "/businesssegments/internationalmarkets/internationalawards";

geber_historyPages[3660] = new Object();
geber_historyPages[3660].title = "Turkey";
geber_historyPages[3660].path = "/businesssegments/internationalmarkets/turkey";

geber_historyPages[3688] = new Object();
geber_historyPages[3688].title = "Outlook";
geber_historyPages[3688].path = "/businesssegments/internationalmarkets/outlook";

geber_historyPages[3590] = new Object();
geber_historyPages[3590].title = "Central and Eastern Europe";
geber_historyPages[3590].path = "/businesssegments/centralandeasterneurope";

geber_historyPages[3614] = new Object();
geber_historyPages[3614].title = "Bank market";
geber_historyPages[3614].path = "/businesssegments/centralandeasterneurope/bankmarket";

geber_historyPages[3636] = new Object();
geber_historyPages[3636].title = "Network and Position";
geber_historyPages[3636].path = "/businesssegments/centralandeasterneurope/networkandposition";

geber_historyPages[3642] = new Object();
geber_historyPages[3642].title = "Strategic development";
geber_historyPages[3642].path = "/businesssegments/centralandeasterneurope/strategicdevelopment";

geber_historyPages[3932] = new Object();
geber_historyPages[3932].title = "Private customers";
geber_historyPages[3932].path = "/businesssegments/centralandeasterneurope/strategicdevelopment/privatecustomers";

geber_historyPages[3934] = new Object();
geber_historyPages[3934].title = "Organisation, IT and Controlling";
geber_historyPages[3934].path = "/businesssegments/centralandeasterneurope/strategicdevelopment/organisationitandcontrolling";

geber_historyPages[3936] = new Object();
geber_historyPages[3936].title = "Outlook";
geber_historyPages[3936].path = "/businesssegments/centralandeasterneurope/strategicdevelopment/outlook";

geber_historyPages[3662] = new Object();
geber_historyPages[3662].title = "Poland";
geber_historyPages[3662].path = "/businesssegments/centralandeasterneurope/poland";

geber_historyPages[3718] = new Object();
geber_historyPages[3718].title = "Business structure";
geber_historyPages[3718].path = "/businesssegments/centralandeasterneurope/poland/businessstructure";

geber_historyPages[3730] = new Object();
geber_historyPages[3730].title = "International Markets";
geber_historyPages[3730].path = "/businesssegments/centralandeasterneurope/poland/internationalmarkets";

geber_historyPages[3734] = new Object();
geber_historyPages[3734].title = "Outlook";
geber_historyPages[3734].path = "/businesssegments/centralandeasterneurope/poland/outlook";

geber_historyPages[3684] = new Object();
geber_historyPages[3684].title = "Czech Republic";
geber_historyPages[3684].path = "/businesssegments/centralandeasterneurope/czechrepublic";

geber_historyPages[3728] = new Object();
geber_historyPages[3728].title = "Outlook";
geber_historyPages[3728].path = "/businesssegments/centralandeasterneurope/czechrepublic/outlook";

geber_historyPages[3694] = new Object();
geber_historyPages[3694].title = "Slovakia";
geber_historyPages[3694].path = "/businesssegments/centralandeasterneurope/slovakia";

geber_historyPages[3722] = new Object();
geber_historyPages[3722].title = "Outlook";
geber_historyPages[3722].path = "/businesssegments/centralandeasterneurope/slovakia/outlook";

geber_historyPages[3714] = new Object();
geber_historyPages[3714].title = "Hungary";
geber_historyPages[3714].path = "/businesssegments/centralandeasterneurope/hungary";

geber_historyPages[3726] = new Object();
geber_historyPages[3726].title = "Outlook";
geber_historyPages[3726].path = "/businesssegments/centralandeasterneurope/hungary/outlook";

geber_historyPages[3724] = new Object();
geber_historyPages[3724].title = "Slovenia";
geber_historyPages[3724].path = "/businesssegments/centralandeasterneurope/slovenia";

geber_historyPages[3758] = new Object();
geber_historyPages[3758].title = "Outlook";
geber_historyPages[3758].path = "/businesssegments/centralandeasterneurope/slovenia/outlook";

geber_historyPages[3736] = new Object();
geber_historyPages[3736].title = "Romania";
geber_historyPages[3736].path = "/businesssegments/centralandeasterneurope/romania";

geber_historyPages[3762] = new Object();
geber_historyPages[3762].title = "Outlook";
geber_historyPages[3762].path = "/businesssegments/centralandeasterneurope/romania/outlook";

geber_historyPages[3754] = new Object();
geber_historyPages[3754].title = "Bulgaria";
geber_historyPages[3754].path = "/businesssegments/centralandeasterneurope/bulgaria";

geber_historyPages[3764] = new Object();
geber_historyPages[3764].title = "Hebros Bank";
geber_historyPages[3764].path = "/businesssegments/centralandeasterneurope/bulgaria/hebrosbank";

geber_historyPages[3774] = new Object();
geber_historyPages[3774].title = "Outlook";
geber_historyPages[3774].path = "/businesssegments/centralandeasterneurope/bulgaria/outlook";

geber_historyPages[3760] = new Object();
geber_historyPages[3760].title = "Croatia";
geber_historyPages[3760].path = "/businesssegments/centralandeasterneurope/croatia";

geber_historyPages[3770] = new Object();
geber_historyPages[3770].title = "Outlook";
geber_historyPages[3770].path = "/businesssegments/centralandeasterneurope/croatia/outlook";

geber_historyPages[3766] = new Object();
geber_historyPages[3766].title = "Bosnia and Herzegovina";
geber_historyPages[3766].path = "/businesssegments/centralandeasterneurope/bosniaandherzegovina";

geber_historyPages[3768] = new Object();
geber_historyPages[3768].title = "Outlook";
geber_historyPages[3768].path = "/businesssegments/centralandeasterneurope/bosniaandherzegovina/outlook";

geber_historyPages[3772] = new Object();
geber_historyPages[3772].title = "Serbia and Montenegro";
geber_historyPages[3772].path = "/businesssegments/centralandeasterneurope/serbiaandmontenegro";

geber_historyPages[3776] = new Object();
geber_historyPages[3776].title = "Eksimbanka";
geber_historyPages[3776].path = "/businesssegments/centralandeasterneurope/serbiaandmontenegro/eksimbanka";

geber_historyPages[3778] = new Object();
geber_historyPages[3778].title = "Outlook";
geber_historyPages[3778].path = "/businesssegments/centralandeasterneurope/serbiaandmontenegro/outlook";

geber_historyPages[3512] = new Object();
geber_historyPages[3512].title = "Organisation and IT";
geber_historyPages[3512].path = "/organisationandit";

geber_historyPages[3526] = new Object();
geber_historyPages[3526].title = "Objectives and projects";
geber_historyPages[3526].path = "/organisationandit/objectivesandprojects";

geber_historyPages[3700] = new Object();
geber_historyPages[3700].title = "The &#8220;Marktfolge&#8221;  project";
geber_historyPages[3700].path = "/organisationandit/objectivesandprojects/the8220marktfolge8221project";

geber_historyPages[3738] = new Object();
geber_historyPages[3738].title = "The &#8220;Zahlungsverkehr NEU&#8221; project";
geber_historyPages[3738].path = "/organisationandit/objectivesandprojects/the8220zahlungsverkehrneu8221project";

geber_historyPages[3780] = new Object();
geber_historyPages[3780].title = "HVB Direkt";
geber_historyPages[3780].path = "/organisationandit/objectivesandprojects/hvbdirekt";

geber_historyPages[3798] = new Object();
geber_historyPages[3798].title = "GEOS";
geber_historyPages[3798].path = "/organisationandit/objectivesandprojects/geos";

geber_historyPages[3556] = new Object();
geber_historyPages[3556].title = "ORG/IT responsibilities";
geber_historyPages[3556].path = "/organisationandit/orgitresponsibilities";

geber_historyPages[3698] = new Object();
geber_historyPages[3698].title = "WAVE";
geber_historyPages[3698].path = "/organisationandit/orgitresponsibilities/wave";

geber_historyPages[3740] = new Object();
geber_historyPages[3740].title = "iT Austria";
geber_historyPages[3740].path = "/organisationandit/orgitresponsibilities/itaustria";

geber_historyPages[3790] = new Object();
geber_historyPages[3790].title = "Central and Eastern Europe";
geber_historyPages[3790].path = "/organisationandit/orgitresponsibilities/centralandeasterneurope";

geber_historyPages[3592] = new Object();
geber_historyPages[3592].title = "Service and support areas";
geber_historyPages[3592].path = "/organisationandit/serviceandsupportareas";

geber_historyPages[3702] = new Object();
geber_historyPages[3702].title = "Security";
geber_historyPages[3702].path = "/organisationandit/serviceandsupportareas/security";

geber_historyPages[3742] = new Object();
geber_historyPages[3742].title = "Global procurement";
geber_historyPages[3742].path = "/organisationandit/serviceandsupportareas/globalprocurement";

geber_historyPages[3786] = new Object();
geber_historyPages[3786].title = "Facility management";
geber_historyPages[3786].path = "/organisationandit/serviceandsupportareas/facilitymanagement";

geber_historyPages[3532] = new Object();
geber_historyPages[3532].title = "Human Resources";
geber_historyPages[3532].path = "/humanresources";

geber_historyPages[3554] = new Object();
geber_historyPages[3554].title = "New internal service regulations";
geber_historyPages[3554].path = "/humanresources/newinternalserviceregulations";

geber_historyPages[3594] = new Object();
geber_historyPages[3594].title = "Personnel marketing";
geber_historyPages[3594].path = "/humanresources/personnelmarketing";

geber_historyPages[3704] = new Object();
geber_historyPages[3704].title = "Training programmes";
geber_historyPages[3704].path = "/humanresources/trainingprogrammes";

geber_historyPages[3782] = new Object();
geber_historyPages[3782].title = "Apprenticeships";
geber_historyPages[3782].path = "/humanresources/trainingprogrammes/apprenticeships";

geber_historyPages[3802] = new Object();
geber_historyPages[3802].title = "Group trainee programmes";
geber_historyPages[3802].path = "/humanresources/trainingprogrammes/grouptraineeprogrammes";

geber_historyPages[3812] = new Object();
geber_historyPages[3812].title = "Training and e-learning";
geber_historyPages[3812].path = "/humanresources/trainingprogrammes/trainingande-learning";

geber_historyPages[3818] = new Object();
geber_historyPages[3818].title = "Sales";
geber_historyPages[3818].path = "/humanresources/trainingprogrammes/sales";

geber_historyPages[3822] = new Object();
geber_historyPages[3822].title = "Investments";
geber_historyPages[3822].path = "/humanresources/trainingprogrammes/investments";

geber_historyPages[3830] = new Object();
geber_historyPages[3830].title = "Services";
geber_historyPages[3830].path = "/humanresources/trainingprogrammes/services";

geber_historyPages[3744] = new Object();
geber_historyPages[3744].title = "Human resources development";
geber_historyPages[3744].path = "/humanresources/humanresourcesdevelopment";

geber_historyPages[3788] = new Object();
geber_historyPages[3788].title = "Mentoring";
geber_historyPages[3788].path = "/humanresources/humanresourcesdevelopment/mentoring";

geber_historyPages[3784] = new Object();
geber_historyPages[3784].title = "Health and employee safety";
geber_historyPages[3784].path = "/humanresources/healthandemployeesafety";

geber_historyPages[3800] = new Object();
geber_historyPages[3800].title = "Sustainability";
geber_historyPages[3800].path = "/humanresources/sustainability";

geber_historyPages[3558] = new Object();
geber_historyPages[3558].title = "Consolidated Financial Statements";
geber_historyPages[3558].path = "/consolidatedfinancialstatements";

geber_historyPages[3596] = new Object();
geber_historyPages[3596].title = "Income statement";
geber_historyPages[3596].path = "/consolidatedfinancialstatements/incomestatement";

geber_historyPages[3706] = new Object();
geber_historyPages[3706].title = "Key figures";
geber_historyPages[3706].path = "/consolidatedfinancialstatements/keyfigures";

geber_historyPages[3746] = new Object();
geber_historyPages[3746].title = "Balance sheet";
geber_historyPages[3746].path = "/consolidatedfinancialstatements/balancesheet";

geber_historyPages[3792] = new Object();
geber_historyPages[3792].title = "Changes in shareholders equity";
geber_historyPages[3792].path = "/consolidatedfinancialstatements/changesinshareholdersequity";

geber_historyPages[3806] = new Object();
geber_historyPages[3806].title = "Cash flow statement";
geber_historyPages[3806].path = "/consolidatedfinancialstatements/cashflowstatement";

geber_historyPages[3666] = new Object();
geber_historyPages[3666].title = "Notes";
geber_historyPages[3666].path = "/notes";

geber_historyPages[3708] = new Object();
geber_historyPages[3708].title = "Accounting principles";
geber_historyPages[3708].path = "/notes/accountingprinciples";

geber_historyPages[3748] = new Object();
geber_historyPages[3748].title = "Scope of consolidation";
geber_historyPages[3748].path = "/notes/scopeofconsolidation";

geber_historyPages[3796] = new Object();
geber_historyPages[3796].title = "Notes to the income statement";
geber_historyPages[3796].path = "/notes/notestotheincomestatement";

geber_historyPages[3810] = new Object();
geber_historyPages[3810].title = "Net interest income";
geber_historyPages[3810].path = "/notes/notestotheincomestatement/netinterestincome";

geber_historyPages[3820] = new Object();
geber_historyPages[3820].title = "Losses on loans and advances";
geber_historyPages[3820].path = "/notes/notestotheincomestatement/lossesonloansandadvances";

geber_historyPages[3826] = new Object();
geber_historyPages[3826].title = "Net fee and commission income";
geber_historyPages[3826].path = "/notes/notestotheincomestatement/netfeeandcommissionincome";

geber_historyPages[3834] = new Object();
geber_historyPages[3834].title = "Net trading result";
geber_historyPages[3834].path = "/notes/notestotheincomestatement/nettradingresult";

geber_historyPages[3842] = new Object();
geber_historyPages[3842].title = "General administrative expenses";
geber_historyPages[3842].path = "/notes/notestotheincomestatement/generaladministrativeexpenses";

geber_historyPages[3852] = new Object();
geber_historyPages[3852].title = "Balance of other operating income";
geber_historyPages[3852].path = "/notes/notestotheincomestatement/balanceofotheroperatingincome";

geber_historyPages[3866] = new Object();
geber_historyPages[3866].title = "Net result from investments";
geber_historyPages[3866].path = "/notes/notestotheincomestatement/netresultfrominvestments";

geber_historyPages[3878] = new Object();
geber_historyPages[3878].title = "Amortisation of goodwill";
geber_historyPages[3878].path = "/notes/notestotheincomestatement/amortisationofgoodwill";

geber_historyPages[3892] = new Object();
geber_historyPages[3892].title = "Taxes on income";
geber_historyPages[3892].path = "/notes/notestotheincomestatement/taxesonincome";

geber_historyPages[3904] = new Object();
geber_historyPages[3904].title = "Earnings per share";
geber_historyPages[3904].path = "/notes/notestotheincomestatement/earningspershare";

geber_historyPages[3808] = new Object();
geber_historyPages[3808].title = "Notes to the balance sheet";
geber_historyPages[3808].path = "/notes/notestothebalancesheet";

geber_historyPages[3816] = new Object();
geber_historyPages[3816].title = "Cash and balances with central banks";
geber_historyPages[3816].path = "/notes/notestothebalancesheet/cashandbalanceswithcentralbanks";

geber_historyPages[3824] = new Object();
geber_historyPages[3824].title = "Trading assets";
geber_historyPages[3824].path = "/notes/notestothebalancesheet/tradingassets";

geber_historyPages[3840] = new Object();
geber_historyPages[3840].title = "Loans";
geber_historyPages[3840].path = "/notes/notestothebalancesheet/loans";

geber_historyPages[3848] = new Object();
geber_historyPages[3848].title = "Loan loss provisions";
geber_historyPages[3848].path = "/notes/notestothebalancesheet/loanlossprovisions";

geber_historyPages[3860] = new Object();
geber_historyPages[3860].title = "Investments";
geber_historyPages[3860].path = "/notes/notestothebalancesheet/investments";

geber_historyPages[3872] = new Object();
geber_historyPages[3872].title = "Property and equipment, intangible assets";
geber_historyPages[3872].path = "/notes/notestothebalancesheet/propertyandequipmentintangibleassets";

geber_historyPages[3880] = new Object();
geber_historyPages[3880].title = "Other assets";
geber_historyPages[3880].path = "/notes/notestothebalancesheet/otherassets";

geber_historyPages[3890] = new Object();
geber_historyPages[3890].title = "Amounts owed to banks and customers";
geber_historyPages[3890].path = "/notes/notestothebalancesheet/amountsowedtobanksandcustomers";

geber_historyPages[3902] = new Object();
geber_historyPages[3902].title = "Liabilities evidenced by certificates";
geber_historyPages[3902].path = "/notes/notestothebalancesheet/liabilitiesevidencedbycertificates";

geber_historyPages[3914] = new Object();
geber_historyPages[3914].title = "Trading liabilities";
geber_historyPages[3914].path = "/notes/notestothebalancesheet/tradingliabilities";

geber_historyPages[3918] = new Object();
geber_historyPages[3918].title = "Provisions";
geber_historyPages[3918].path = "/notes/notestothebalancesheet/provisions";

geber_historyPages[3922] = new Object();
geber_historyPages[3922].title = "Other liabilities";
geber_historyPages[3922].path = "/notes/notestothebalancesheet/otherliabilities";

geber_historyPages[3926] = new Object();
geber_historyPages[3926].title = "Subordinated capital";
geber_historyPages[3926].path = "/notes/notestothebalancesheet/subordinatedcapital";

geber_historyPages[3930] = new Object();
geber_historyPages[3930].title = "Shareholders´ equity";
geber_historyPages[3930].path = "/notes/notestothebalancesheet/shareholdersequity";

geber_historyPages[3814] = new Object();
geber_historyPages[3814].title = "Additional IFRS disclosures";
geber_historyPages[3814].path = "/notes/additionalifrsdisclosures";

geber_historyPages[3828] = new Object();
geber_historyPages[3828].title = "Fair Values";
geber_historyPages[3828].path = "/notes/additionalifrsdisclosures/fairvalues";

geber_historyPages[3836] = new Object();
geber_historyPages[3836].title = "Related party disclosures";
geber_historyPages[3836].path = "/notes/additionalifrsdisclosures/relatedpartydisclosures";

geber_historyPages[3850] = new Object();
geber_historyPages[3850].title = "Segment reporting";
geber_historyPages[3850].path = "/notes/additionalifrsdisclosures/segmentreporting";

geber_historyPages[3854] = new Object();
geber_historyPages[3854].title = "Loans and advances on which interest is not being accrued";
geber_historyPages[3854].path = "/notes/additionalifrsdisclosures/loansandadvancesonwhichinterestisnotbeingaccrued";

geber_historyPages[3874] = new Object();
geber_historyPages[3874].title = "Assets pledged as security";
geber_historyPages[3874].path = "/notes/additionalifrsdisclosures/assetspledgedassecurity";

geber_historyPages[3884] = new Object();
geber_historyPages[3884].title = "Subordinated assets";
geber_historyPages[3884].path = "/notes/additionalifrsdisclosures/subordinatedassets";

geber_historyPages[3894] = new Object();
geber_historyPages[3894].title = "Assets and liabilities in foreign currency";
geber_historyPages[3894].path = "/notes/additionalifrsdisclosures/assetsandliabilitiesinforeigncurrency";

geber_historyPages[3906] = new Object();
geber_historyPages[3906].title = "Trust assets and liabilities";
geber_historyPages[3906].path = "/notes/additionalifrsdisclosures/trustassetsandliabilities";

geber_historyPages[3912] = new Object();
geber_historyPages[3912].title = "Repurchase agreements";
geber_historyPages[3912].path = "/notes/additionalifrsdisclosures/repurchaseagreements";

geber_historyPages[3916] = new Object();
geber_historyPages[3916].title = "Contingent liabilities and commitments";
geber_historyPages[3916].path = "/notes/additionalifrsdisclosures/contingentliabilitiesandcommitments";

geber_historyPages[3920] = new Object();
geber_historyPages[3920].title = "Selected subsidiaries";
geber_historyPages[3920].path = "/notes/additionalifrsdisclosures/selectedsubsidiaries";

geber_historyPages[3924] = new Object();
geber_historyPages[3924].title = "Employees";
geber_historyPages[3924].path = "/notes/additionalifrsdisclosures/employees";

geber_historyPages[3928] = new Object();
geber_historyPages[3928].title = "Events after the balance sheet date";
geber_historyPages[3928].path = "/notes/additionalifrsdisclosures/eventsafterthebalancesheetdate";

geber_historyPages[3832] = new Object();
geber_historyPages[3832].title = "Risk report";
geber_historyPages[3832].path = "/notes/riskreport";

geber_historyPages[3844] = new Object();
geber_historyPages[3844].title = "Overall risk management";
geber_historyPages[3844].path = "/notes/riskreport/overallriskmanagement";

geber_historyPages[3868] = new Object();
geber_historyPages[3868].title = "Market risk";
geber_historyPages[3868].path = "/notes/riskreport/overallriskmanagement/marketrisk";

geber_historyPages[3886] = new Object();
geber_historyPages[3886].title = "Liquidity risk";
geber_historyPages[3886].path = "/notes/riskreport/overallriskmanagement/liquidityrisk";

geber_historyPages[3900] = new Object();
geber_historyPages[3900].title = "Credit risk";
geber_historyPages[3900].path = "/notes/riskreport/overallriskmanagement/creditrisk";

geber_historyPages[3858] = new Object();
geber_historyPages[3858].title = "Operational risk";
geber_historyPages[3858].path = "/notes/riskreport/operationalrisk";

geber_historyPages[3870] = new Object();
geber_historyPages[3870].title = "Legal risks";
geber_historyPages[3870].path = "/notes/riskreport/legalrisks";

geber_historyPages[3888] = new Object();
geber_historyPages[3888].title = "Net charge for losses on loans and advances";
geber_historyPages[3888].path = "/notes/riskreport/netchargeforlossesonloansandadvances";

geber_historyPages[3898] = new Object();
geber_historyPages[3898].title = "Derivatives";
geber_historyPages[3898].path = "/notes/riskreport/derivatives";

geber_historyPages[3910] = new Object();
geber_historyPages[3910].title = "Comfort letters";
geber_historyPages[3910].path = "/notes/riskreport/comfortletters";

geber_historyPages[3846] = new Object();
geber_historyPages[3846].title = "Information required under Austrian law";
geber_historyPages[3846].path = "/notes/informationrequiredunderaustrianlaw";

geber_historyPages[3862] = new Object();
geber_historyPages[3862].title = "Legal basis under Austrian law";
geber_historyPages[3862].path = "/notes/informationrequiredunderaustrianlaw/legalbasisunderaustrianlaw";

geber_historyPages[3876] = new Object();
geber_historyPages[3876].title = "Supervisory Board and Managing Board";
geber_historyPages[3876].path = "/notes/informationrequiredunderaustrianlaw/supervisoryboardandmanagingboard";

geber_historyPages[3882] = new Object();
geber_historyPages[3882].title = "Dividends";
geber_historyPages[3882].path = "/notes/informationrequiredunderaustrianlaw/dividends";

geber_historyPages[3896] = new Object();
geber_historyPages[3896].title = "Differences IFRS/Austrian accounting principles";
geber_historyPages[3896].path = "/notes/informationrequiredunderaustrianlaw/differencesifrsaustrianaccountingprinciples";

geber_historyPages[3908] = new Object();
geber_historyPages[3908].title = "Consolidated capital resources";
geber_historyPages[3908].path = "/notes/informationrequiredunderaustrianlaw/consolidatedcapitalresources";

geber_historyPages[3856] = new Object();
geber_historyPages[3856].title = "Concluding remarks";
geber_historyPages[3856].path = "/notes/concludingremarks";

geber_historyPages[3864] = new Object();
geber_historyPages[3864].title = "Auditors´ report";
geber_historyPages[3864].path = "/notes/auditorsreport";

geber_historyPages[3710] = new Object();
geber_historyPages[3710].title = "Office Network/ Disclaimer";
geber_historyPages[3710].path = "/officenetworkaustria";

geber_historyPages[3750] = new Object();
geber_historyPages[3750].title = "Subsidiaries and equity interests";
geber_historyPages[3750].path = "/officenetworkaustria/subsidiariesandequityinterests";

geber_historyPages[3794] = new Object();
geber_historyPages[3794].title = "Central and Eastern Europe";
geber_historyPages[3794].path = "/officenetworkaustria/centralandeasterneurope";

geber_historyPages[3804] = new Object();
geber_historyPages[3804].title = "Other countries";
geber_historyPages[3804].path = "/officenetworkaustria/othercountries";

geber_historyPages[3838] = new Object();
geber_historyPages[3838].title = "Imprint/ Disclaimer";
geber_historyPages[3838].path = "/officenetworkaustria/imprint";

geber_historyPages[3099] = new Object();
geber_historyPages[3099].title = "subjects";
geber_historyPages[3099].path = "/subjects";

geber_historyPages[3945] = new Object();
geber_historyPages[3945].title = "Facts & Figures ";
geber_historyPages[3945].path = "/subjects/factsfigures";

geber_historyPages[3959] = new Object();
geber_historyPages[3959].title = "Highlights 2004";
geber_historyPages[3959].path = "/subjects/factsfigures/highlights2004";

geber_historyPages[3965] = new Object();
geber_historyPages[3965].title = "BA-CA Group overview";
geber_historyPages[3965].path = "/subjects/factsfigures/ba-cagroupoverview";

geber_historyPages[3979] = new Object();
geber_historyPages[3979].title = "Selected subsidiaries";
geber_historyPages[3979].path = "/subjects/factsfigures/ba-cagroupoverview/selectedsubsidiaries";

geber_historyPages[3973] = new Object();
geber_historyPages[3973].title = "Key figures shares";
geber_historyPages[3973].path = "/subjects/factsfigures/keyfiguresshares";

geber_historyPages[3983] = new Object();
geber_historyPages[3983].title = "Earnings per share";
geber_historyPages[3983].path = "/subjects/factsfigures/keyfiguresshares/earningspershare";

geber_historyPages[3989] = new Object();
geber_historyPages[3989].title = "Dividend";
geber_historyPages[3989].path = "/subjects/factsfigures/keyfiguresshares/dividend";

geber_historyPages[3993] = new Object();
geber_historyPages[3993].title = "Shareholder structure";
geber_historyPages[3993].path = "/subjects/factsfigures/keyfiguresshares/shareholderstructure";

geber_historyPages[3981] = new Object();
geber_historyPages[3981].title = "Income statement - 4 years";
geber_historyPages[3981].path = "/subjects/factsfigures/incomestatement-4years";

geber_historyPages[3997] = new Object();
geber_historyPages[3997].title = "Income statement 2004";
geber_historyPages[3997].path = "/subjects/factsfigures/incomestatement-4years/incomestatement2004";

geber_historyPages[4326] = new Object();
geber_historyPages[4326].title = "Income statement discussion";
geber_historyPages[4326].path = "/subjects/factsfigures/incomestatement-4years/incomestatementdiscussion";

geber_historyPages[3991] = new Object();
geber_historyPages[3991].title = "Balance sheet - 4 years";
geber_historyPages[3991].path = "/subjects/factsfigures/balancesheet-4years";

geber_historyPages[3999] = new Object();
geber_historyPages[3999].title = "Balance sheet 2004";
geber_historyPages[3999].path = "/subjects/factsfigures/balancesheet-4years/balancesheet2004";

geber_historyPages[3995] = new Object();
geber_historyPages[3995].title = "Changes in shareholders equity";
geber_historyPages[3995].path = "/subjects/factsfigures/changesinshareholdersequity";

geber_historyPages[4340] = new Object();
geber_historyPages[4340].title = "Notes to Changes in shareholders´ equity";
geber_historyPages[4340].path = "/subjects/factsfigures/changesinshareholdersequity/notestochangesinshareholdersequity";

geber_historyPages[4005] = new Object();
geber_historyPages[4005].title = "Cash flow statement";
geber_historyPages[4005].path = "/subjects/factsfigures/cashflowstatement";

geber_historyPages[4007] = new Object();
geber_historyPages[4007].title = "Segment reporting";
geber_historyPages[4007].path = "/subjects/factsfigures/segmentreporting";

geber_historyPages[4015] = new Object();
geber_historyPages[4015].title = "Central and Eastern Europe";
geber_historyPages[4015].path = "/subjects/factsfigures/centralandeasterneurope";

geber_historyPages[4017] = new Object();
geber_historyPages[4017].title = "Income statement CEE";
geber_historyPages[4017].path = "/subjects/factsfigures/centralandeasterneurope/incomestatementcee";

geber_historyPages[3947] = new Object();
geber_historyPages[3947].title = "Business performance on record level";
geber_historyPages[3947].path = "/subjects/businessperformanceonrecordlevel";

geber_historyPages[3961] = new Object();
geber_historyPages[3961].title = "Summary";
geber_historyPages[3961].path = "/subjects/businessperformanceonrecordlevel/summary";

geber_historyPages[3967] = new Object();
geber_historyPages[3967].title = "Income statement discussion";
geber_historyPages[3967].path = "/subjects/businessperformanceonrecordlevel/incomestatementdiscussion";

geber_historyPages[3977] = new Object();
geber_historyPages[3977].title = "Income statement";
geber_historyPages[3977].path = "/subjects/businessperformanceonrecordlevel/incomestatementdiscussion/incomestatement";

geber_historyPages[3985] = new Object();
geber_historyPages[3985].title = "Net interest income";
geber_historyPages[3985].path = "/subjects/businessperformanceonrecordlevel/incomestatementdiscussion/netinterestincome";

geber_historyPages[4013] = new Object();
geber_historyPages[4013].title = "Losses on loans and advances";
geber_historyPages[4013].path = "/subjects/businessperformanceonrecordlevel/incomestatementdiscussion/lossesonloansandadvances";

geber_historyPages[4033] = new Object();
geber_historyPages[4033].title = "Net fee and commission income";
geber_historyPages[4033].path = "/subjects/businessperformanceonrecordlevel/incomestatementdiscussion/netfeeandcommissionincome";

geber_historyPages[4035] = new Object();
geber_historyPages[4035].title = "Trading operations";
geber_historyPages[4035].path = "/subjects/businessperformanceonrecordlevel/incomestatementdiscussion/tradingoperations";

geber_historyPages[4039] = new Object();
geber_historyPages[4039].title = "General administrative expenses";
geber_historyPages[4039].path = "/subjects/businessperformanceonrecordlevel/incomestatementdiscussion/generaladministrativeexpenses";

geber_historyPages[4049] = new Object();
geber_historyPages[4049].title = "Other positions";
geber_historyPages[4049].path = "/subjects/businessperformanceonrecordlevel/incomestatementdiscussion/otherpositions";

geber_historyPages[3975] = new Object();
geber_historyPages[3975].title = "Results, profitability and growth";
geber_historyPages[3975].path = "/subjects/businessperformanceonrecordlevel/resultsprofitabilityandgrowth";

geber_historyPages[4011] = new Object();
geber_historyPages[4011].title = "Results&#9;";
geber_historyPages[4011].path = "/subjects/businessperformanceonrecordlevel/resultsprofitabilityandgrowth/results9";

geber_historyPages[4023] = new Object();
geber_historyPages[4023].title = "Growth";
geber_historyPages[4023].path = "/subjects/businessperformanceonrecordlevel/resultsprofitabilityandgrowth/growth";

geber_historyPages[4037] = new Object();
geber_historyPages[4037].title = "Proposal for the appropriation of profits";
geber_historyPages[4037].path = "/subjects/businessperformanceonrecordlevel/resultsprofitabilityandgrowth/proposalfortheappropriationofprofits";

geber_historyPages[4051] = new Object();
geber_historyPages[4051].title = "Earnings per share";
geber_historyPages[4051].path = "/subjects/businessperformanceonrecordlevel/resultsprofitabilityandgrowth/earningspershare";

geber_historyPages[4065] = new Object();
geber_historyPages[4065].title = "Key figures";
geber_historyPages[4065].path = "/subjects/businessperformanceonrecordlevel/resultsprofitabilityandgrowth/keyfigures";

geber_historyPages[3987] = new Object();
geber_historyPages[3987].title = "Development of the business segments";
geber_historyPages[3987].path = "/subjects/businessperformanceonrecordlevel/developmentofthebusinesssegments";

geber_historyPages[4009] = new Object();
geber_historyPages[4009].title = "Private Customers Austria";
geber_historyPages[4009].path = "/subjects/businessperformanceonrecordlevel/developmentofthebusinesssegments/privatecustomersaustria";

geber_historyPages[4025] = new Object();
geber_historyPages[4025].title = "Corporate Customers Austria";
geber_historyPages[4025].path = "/subjects/businessperformanceonrecordlevel/developmentofthebusinesssegments/corporatecustomersaustria";

geber_historyPages[4041] = new Object();
geber_historyPages[4041].title = "CEE";
geber_historyPages[4041].path = "/subjects/businessperformanceonrecordlevel/developmentofthebusinesssegments/cee";

geber_historyPages[4045] = new Object();
geber_historyPages[4045].title = "Network and Position";
geber_historyPages[4045].path = "/subjects/businessperformanceonrecordlevel/developmentofthebusinesssegments/cee/networkandposition";

geber_historyPages[4053] = new Object();
geber_historyPages[4053].title = "Poland";
geber_historyPages[4053].path = "/subjects/businessperformanceonrecordlevel/developmentofthebusinesssegments/cee/poland";

geber_historyPages[4057] = new Object();
geber_historyPages[4057].title = "Czech Republic";
geber_historyPages[4057].path = "/subjects/businessperformanceonrecordlevel/developmentofthebusinesssegments/cee/czechrepublic";

geber_historyPages[4063] = new Object();
geber_historyPages[4063].title = "Slovakia";
geber_historyPages[4063].path = "/subjects/businessperformanceonrecordlevel/developmentofthebusinesssegments/cee/slovakia";

geber_historyPages[4071] = new Object();
geber_historyPages[4071].title = "Hungary";
geber_historyPages[4071].path = "/subjects/businessperformanceonrecordlevel/developmentofthebusinesssegments/cee/hungary";

geber_historyPages[4079] = new Object();
geber_historyPages[4079].title = "Slovenia";
geber_historyPages[4079].path = "/subjects/businessperformanceonrecordlevel/developmentofthebusinesssegments/cee/slovenia";

geber_historyPages[4093] = new Object();
geber_historyPages[4093].title = "Romania";
geber_historyPages[4093].path = "/subjects/businessperformanceonrecordlevel/developmentofthebusinesssegments/cee/romania";

geber_historyPages[4099] = new Object();
geber_historyPages[4099].title = "Bulgaria";
geber_historyPages[4099].path = "/subjects/businessperformanceonrecordlevel/developmentofthebusinesssegments/cee/bulgaria";

geber_historyPages[4107] = new Object();
geber_historyPages[4107].title = "Croatia";
geber_historyPages[4107].path = "/subjects/businessperformanceonrecordlevel/developmentofthebusinesssegments/cee/croatia";

geber_historyPages[4117] = new Object();
geber_historyPages[4117].title = "Bosnia and Herzegovina";
geber_historyPages[4117].path = "/subjects/businessperformanceonrecordlevel/developmentofthebusinesssegments/cee/bosniaandherzegovina";

geber_historyPages[4125] = new Object();
geber_historyPages[4125].title = "Serbia and Montenegro";
geber_historyPages[4125].path = "/subjects/businessperformanceonrecordlevel/developmentofthebusinesssegments/cee/serbiaandmontenegro";

geber_historyPages[4043] = new Object();
geber_historyPages[4043].title = "International Markets";
geber_historyPages[4043].path = "/subjects/businessperformanceonrecordlevel/developmentofthebusinesssegments/internationalmarkets";

geber_historyPages[4334] = new Object();
geber_historyPages[4334].title = "Corporate Center";
geber_historyPages[4334].path = "/subjects/businessperformanceonrecordlevel/developmentofthebusinesssegments/corporatecenter";

geber_historyPages[4338] = new Object();
geber_historyPages[4338].title = "Segment reporting";
geber_historyPages[4338].path = "/subjects/businessperformanceonrecordlevel/developmentofthebusinesssegments/segmentreporting";

geber_historyPages[4019] = new Object();
geber_historyPages[4019].title = "Balance sheet";
geber_historyPages[4019].path = "/subjects/businessperformanceonrecordlevel/balancesheet";

geber_historyPages[4029] = new Object();
geber_historyPages[4029].title = "Balance sheet";
geber_historyPages[4029].path = "/subjects/businessperformanceonrecordlevel/balancesheet/balancesheet";

geber_historyPages[4055] = new Object();
geber_historyPages[4055].title = "Assets";
geber_historyPages[4055].path = "/subjects/businessperformanceonrecordlevel/balancesheet/assets";

geber_historyPages[4097] = new Object();
geber_historyPages[4097].title = "Liabilities";
geber_historyPages[4097].path = "/subjects/businessperformanceonrecordlevel/balancesheet/liabilities";

geber_historyPages[4105] = new Object();
geber_historyPages[4105].title = "Changes in shareholders equity";
geber_historyPages[4105].path = "/subjects/businessperformanceonrecordlevel/balancesheet/liabilities/changesinshareholdersequity";

geber_historyPages[4103] = new Object();
geber_historyPages[4103].title = "Capital resources";
geber_historyPages[4103].path = "/subjects/businessperformanceonrecordlevel/balancesheet/capitalresources";

geber_historyPages[4027] = new Object();
geber_historyPages[4027].title = "Events after the balance sheet date";
geber_historyPages[4027].path = "/subjects/businessperformanceonrecordlevel/eventsafterthebalancesheetdate";

geber_historyPages[3949] = new Object();
geber_historyPages[3949].title = "CEE largest earnings contribution";
geber_historyPages[3949].path = "/subjects/ceelargestearningscontribution";

geber_historyPages[3963] = new Object();
geber_historyPages[3963].title = "CEE region";
geber_historyPages[3963].path = "/subjects/ceelargestearningscontribution/ceeregion";

geber_historyPages[3971] = new Object();
geber_historyPages[3971].title = "Bank market";
geber_historyPages[3971].path = "/subjects/ceelargestearningscontribution/ceeregion/bankmarket";

geber_historyPages[4047] = new Object();
geber_historyPages[4047].title = "Network and Position";
geber_historyPages[4047].path = "/subjects/ceelargestearningscontribution/ceeregion/networkandposition";

geber_historyPages[4059] = new Object();
geber_historyPages[4059].title = "Strategic development";
geber_historyPages[4059].path = "/subjects/ceelargestearningscontribution/ceeregion/strategicdevelopment";

geber_historyPages[4067] = new Object();
geber_historyPages[4067].title = "Private customers";
geber_historyPages[4067].path = "/subjects/ceelargestearningscontribution/ceeregion/strategicdevelopment/privatecustomers";

geber_historyPages[4073] = new Object();
geber_historyPages[4073].title = "Organisation, IT and Controlling";
geber_historyPages[4073].path = "/subjects/ceelargestearningscontribution/ceeregion/strategicdevelopment/organisationitandcontrolling";

geber_historyPages[4083] = new Object();
geber_historyPages[4083].title = "Outlook";
geber_historyPages[4083].path = "/subjects/ceelargestearningscontribution/ceeregion/strategicdevelopment/outlook";

geber_historyPages[4077] = new Object();
geber_historyPages[4077].title = "Subsidiaries";
geber_historyPages[4077].path = "/subjects/ceelargestearningscontribution/ceeregion/subsidiaries";

geber_historyPages[3969] = new Object();
geber_historyPages[3969].title = "Poland";
geber_historyPages[3969].path = "/subjects/ceelargestearningscontribution/poland";

geber_historyPages[4061] = new Object();
geber_historyPages[4061].title = "Business structure";
geber_historyPages[4061].path = "/subjects/ceelargestearningscontribution/poland/businessstructure";

geber_historyPages[4075] = new Object();
geber_historyPages[4075].title = "International Markets";
geber_historyPages[4075].path = "/subjects/ceelargestearningscontribution/poland/internationalmarkets";

geber_historyPages[4085] = new Object();
geber_historyPages[4085].title = "Outlook";
geber_historyPages[4085].path = "/subjects/ceelargestearningscontribution/poland/outlook";

geber_historyPages[4003] = new Object();
geber_historyPages[4003].title = "Czech Republic";
geber_historyPages[4003].path = "/subjects/ceelargestearningscontribution/czechrepublic";

geber_historyPages[4089] = new Object();
geber_historyPages[4089].title = "Outlook";
geber_historyPages[4089].path = "/subjects/ceelargestearningscontribution/czechrepublic/outlook";

geber_historyPages[4021] = new Object();
geber_historyPages[4021].title = "Slovakia";
geber_historyPages[4021].path = "/subjects/ceelargestearningscontribution/slovakia";

geber_historyPages[4087] = new Object();
geber_historyPages[4087].title = "Outlook";
geber_historyPages[4087].path = "/subjects/ceelargestearningscontribution/slovakia/outlook";

geber_historyPages[4069] = new Object();
geber_historyPages[4069].title = "Hungary";
geber_historyPages[4069].path = "/subjects/ceelargestearningscontribution/hungary";

geber_historyPages[4091] = new Object();
geber_historyPages[4091].title = "Outlook";
geber_historyPages[4091].path = "/subjects/ceelargestearningscontribution/hungary/outlook";

geber_historyPages[4081] = new Object();
geber_historyPages[4081].title = "Slovenia";
geber_historyPages[4081].path = "/subjects/ceelargestearningscontribution/slovenia";

geber_historyPages[4115] = new Object();
geber_historyPages[4115].title = "Outlook";
geber_historyPages[4115].path = "/subjects/ceelargestearningscontribution/slovenia/outlook";

geber_historyPages[4095] = new Object();
geber_historyPages[4095].title = "Romania";
geber_historyPages[4095].path = "/subjects/ceelargestearningscontribution/romania";

geber_historyPages[4113] = new Object();
geber_historyPages[4113].title = "Outlook";
geber_historyPages[4113].path = "/subjects/ceelargestearningscontribution/romania/outlook";

geber_historyPages[4101] = new Object();
geber_historyPages[4101].title = "Bulgaria";
geber_historyPages[4101].path = "/subjects/ceelargestearningscontribution/bulgaria";

geber_historyPages[4111] = new Object();
geber_historyPages[4111].title = "Hebros Bank";
geber_historyPages[4111].path = "/subjects/ceelargestearningscontribution/bulgaria/hebrosbank";

geber_historyPages[4336] = new Object();
geber_historyPages[4336].title = "Outlook";
geber_historyPages[4336].path = "/subjects/ceelargestearningscontribution/bulgaria/outlook";

geber_historyPages[4109] = new Object();
geber_historyPages[4109].title = "Croatia";
geber_historyPages[4109].path = "/subjects/ceelargestearningscontribution/croatia";

geber_historyPages[4127] = new Object();
geber_historyPages[4127].title = "Outlook";
geber_historyPages[4127].path = "/subjects/ceelargestearningscontribution/croatia/outlook";

geber_historyPages[4119] = new Object();
geber_historyPages[4119].title = "Bosnia and Herzegovina";
geber_historyPages[4119].path = "/subjects/ceelargestearningscontribution/bosniaandherzegovina";

geber_historyPages[4131] = new Object();
geber_historyPages[4131].title = "Outlook";
geber_historyPages[4131].path = "/subjects/ceelargestearningscontribution/bosniaandherzegovina/outlook";

geber_historyPages[4123] = new Object();
geber_historyPages[4123].title = "Serbia and Montenegro";
geber_historyPages[4123].path = "/subjects/ceelargestearningscontribution/serbiaandmontenegro";

geber_historyPages[4129] = new Object();
geber_historyPages[4129].title = "Eksimbanka";
geber_historyPages[4129].path = "/subjects/ceelargestearningscontribution/serbiaandmontenegro/eksimbanka";

geber_historyPages[4135] = new Object();
geber_historyPages[4135].title = "Outlook";
geber_historyPages[4135].path = "/subjects/ceelargestearningscontribution/serbiaandmontenegro/outlook";

geber_historyPages[4133] = new Object();
geber_historyPages[4133].title = "Income statement CEE";
geber_historyPages[4133].path = "/subjects/ceelargestearningscontribution/incomestatementcee";

geber_historyPages[3951] = new Object();
geber_historyPages[3951].title = "Capital markets and rating";
geber_historyPages[3951].path = "/subjects/capitalmarketsandrating";

geber_historyPages[4121] = new Object();
geber_historyPages[4121].title = "Key figures BA-CA share";
geber_historyPages[4121].path = "/subjects/capitalmarketsandrating/keyfiguresba-cashare";

geber_historyPages[4143] = new Object();
geber_historyPages[4143].title = "Shareholder structure";
geber_historyPages[4143].path = "/subjects/capitalmarketsandrating/keyfiguresba-cashare/shareholderstructure";

geber_historyPages[4153] = new Object();
geber_historyPages[4153].title = "Earnings per share";
geber_historyPages[4153].path = "/subjects/capitalmarketsandrating/keyfiguresba-cashare/earningspershare";

geber_historyPages[4161] = new Object();
geber_historyPages[4161].title = "Dividend";
geber_historyPages[4161].path = "/subjects/capitalmarketsandrating/keyfiguresba-cashare/dividend";

geber_historyPages[4141] = new Object();
geber_historyPages[4141].title = "Growth in value";
geber_historyPages[4141].path = "/subjects/capitalmarketsandrating/growthinvalue";

geber_historyPages[4151] = new Object();
geber_historyPages[4151].title = "Stock indices";
geber_historyPages[4151].path = "/subjects/capitalmarketsandrating/stockindices";

geber_historyPages[4163] = new Object();
geber_historyPages[4163].title = "Communication";
geber_historyPages[4163].path = "/subjects/capitalmarketsandrating/communication";

geber_historyPages[4173] = new Object();
geber_historyPages[4173].title = "Investor Relations";
geber_historyPages[4173].path = "/subjects/capitalmarketsandrating/investorrelations";

geber_historyPages[4179] = new Object();
geber_historyPages[4179].title = "Corporate Governance";
geber_historyPages[4179].path = "/subjects/capitalmarketsandrating/corporategovernance";

geber_historyPages[4187] = new Object();
geber_historyPages[4187].title = "Transparency";
geber_historyPages[4187].path = "/subjects/capitalmarketsandrating/corporategovernance/transparency";

geber_historyPages[4199] = new Object();
geber_historyPages[4199].title = "Supervisory Board";
geber_historyPages[4199].path = "/subjects/capitalmarketsandrating/corporategovernance/supervisoryboard";

geber_historyPages[4205] = new Object();
geber_historyPages[4205].title = "Shareholders";
geber_historyPages[4205].path = "/subjects/capitalmarketsandrating/corporategovernance/shareholders";

geber_historyPages[4217] = new Object();
geber_historyPages[4217].title = "Compliance and Code of Conduct";
geber_historyPages[4217].path = "/subjects/capitalmarketsandrating/corporategovernance/complianceandcodeofconduct";

geber_historyPages[4225] = new Object();
geber_historyPages[4225].title = "Evaluation";
geber_historyPages[4225].path = "/subjects/capitalmarketsandrating/corporategovernance/evaluation";

geber_historyPages[3953] = new Object();
geber_historyPages[3953].title = "Management & Structur ";
geber_historyPages[3953].path = "/subjects/managementstructur";

geber_historyPages[4137] = new Object();
geber_historyPages[4137].title = "Boards";
geber_historyPages[4137].path = "/subjects/managementstructur/boards";

geber_historyPages[4145] = new Object();
geber_historyPages[4145].title = "Erich Hampel";
geber_historyPages[4145].path = "/subjects/managementstructur/boards/erichhampel";

geber_historyPages[4155] = new Object();
geber_historyPages[4155].title = "Wolfgang Haller";
geber_historyPages[4155].path = "/subjects/managementstructur/boards/wolfganghaller";

geber_historyPages[4165] = new Object();
geber_historyPages[4165].title = "Willibald Cernko";
geber_historyPages[4165].path = "/subjects/managementstructur/boards/willibaldcernko";

geber_historyPages[4175] = new Object();
geber_historyPages[4175].title = "Stefan Ermisch";
geber_historyPages[4175].path = "/subjects/managementstructur/boards/stefanermisch";

geber_historyPages[4185] = new Object();
geber_historyPages[4185].title = "Willi Hemetsberger";
geber_historyPages[4185].path = "/subjects/managementstructur/boards/willihemetsberger";

geber_historyPages[4193] = new Object();
geber_historyPages[4193].title = "Regina Prehofer";
geber_historyPages[4193].path = "/subjects/managementstructur/boards/reginaprehofer";

geber_historyPages[4203] = new Object();
geber_historyPages[4203].title = "Johann Strobl";
geber_historyPages[4203].path = "/subjects/managementstructur/boards/johannstrobl";

geber_historyPages[4167] = new Object();
geber_historyPages[4167].title = "Report of the Supervisory Board";
geber_historyPages[4167].path = "/subjects/managementstructur/reportofthesupervisoryboard";

geber_historyPages[4181] = new Object();
geber_historyPages[4181].title = "Focus of activity";
geber_historyPages[4181].path = "/subjects/managementstructur/reportofthesupervisoryboard/focusofactivity";

geber_historyPages[4195] = new Object();
geber_historyPages[4195].title = "Board members";
geber_historyPages[4195].path = "/subjects/managementstructur/reportofthesupervisoryboard/boardmembers";

geber_historyPages[4209] = new Object();
geber_historyPages[4209].title = "Financial statements";
geber_historyPages[4209].path = "/subjects/managementstructur/reportofthesupervisoryboard/financialstatements";

geber_historyPages[4177] = new Object();
geber_historyPages[4177].title = "Corporate Governance";
geber_historyPages[4177].path = "/subjects/managementstructur/corporategovernance";

geber_historyPages[4189] = new Object();
geber_historyPages[4189].title = "Transparency";
geber_historyPages[4189].path = "/subjects/managementstructur/corporategovernance/transparency";

geber_historyPages[4197] = new Object();
geber_historyPages[4197].title = "Supervisory Board";
geber_historyPages[4197].path = "/subjects/managementstructur/corporategovernance/supervisoryboard";

geber_historyPages[4207] = new Object();
geber_historyPages[4207].title = "Shareholders";
geber_historyPages[4207].path = "/subjects/managementstructur/corporategovernance/shareholders";

geber_historyPages[4215] = new Object();
geber_historyPages[4215].title = "Compliance and Code of Conduct";
geber_historyPages[4215].path = "/subjects/managementstructur/corporategovernance/complianceandcodeofconduct";

geber_historyPages[4223] = new Object();
geber_historyPages[4223].title = "Evaluation";
geber_historyPages[4223].path = "/subjects/managementstructur/corporategovernance/evaluation";

geber_historyPages[4183] = new Object();
geber_historyPages[4183].title = "Organisation Chart";
geber_historyPages[4183].path = "/subjects/managementstructur/organisationchart";

geber_historyPages[4191] = new Object();
geber_historyPages[4191].title = "CEE network";
geber_historyPages[4191].path = "/subjects/managementstructur/ceenetwork";

geber_historyPages[4201] = new Object();
geber_historyPages[4201].title = "Selected subsidiaries";
geber_historyPages[4201].path = "/subjects/managementstructur/selectedsubsidiaries";

geber_historyPages[4211] = new Object();
geber_historyPages[4211].title = "Office Network Austria";
geber_historyPages[4211].path = "/subjects/managementstructur/officenetworkaustria";

geber_historyPages[4213] = new Object();
geber_historyPages[4213].title = "Subsidiaries and equity interests";
geber_historyPages[4213].path = "/subjects/managementstructur/officenetworkaustria/subsidiariesandequityinterests";

geber_historyPages[4227] = new Object();
geber_historyPages[4227].title = "Central and Eastern Europe";
geber_historyPages[4227].path = "/subjects/managementstructur/officenetworkaustria/centralandeasterneurope";

geber_historyPages[4231] = new Object();
geber_historyPages[4231].title = "Other countries";
geber_historyPages[4231].path = "/subjects/managementstructur/officenetworkaustria/othercountries";

geber_historyPages[3955] = new Object();
geber_historyPages[3955].title = "Risk report";
geber_historyPages[3955].path = "/subjects/riskreport";

geber_historyPages[4139] = new Object();
geber_historyPages[4139].title = "Overall risk management";
geber_historyPages[4139].path = "/subjects/riskreport/overallriskmanagement";

geber_historyPages[4149] = new Object();
geber_historyPages[4149].title = "Market risk";
geber_historyPages[4149].path = "/subjects/riskreport/overallriskmanagement/marketrisk";

geber_historyPages[4159] = new Object();
geber_historyPages[4159].title = "Liquidity risk";
geber_historyPages[4159].path = "/subjects/riskreport/overallriskmanagement/liquidityrisk";

geber_historyPages[4171] = new Object();
geber_historyPages[4171].title = "Credit risk";
geber_historyPages[4171].path = "/subjects/riskreport/overallriskmanagement/creditrisk";

geber_historyPages[4147] = new Object();
geber_historyPages[4147].title = "Assessment";
geber_historyPages[4147].path = "/subjects/riskreport/assessment";

geber_historyPages[4157] = new Object();
geber_historyPages[4157].title = "Risk exposures";
geber_historyPages[4157].path = "/subjects/riskreport/riskexposures";

geber_historyPages[4249] = new Object();
geber_historyPages[4249].title = "Operational risk";
geber_historyPages[4249].path = "/subjects/riskreport/riskexposures/operationalrisk";

geber_historyPages[4251] = new Object();
geber_historyPages[4251].title = "Legal risks";
geber_historyPages[4251].path = "/subjects/riskreport/riskexposures/legalrisks";

geber_historyPages[4257] = new Object();
geber_historyPages[4257].title = "Contingent liabilities and commitments";
geber_historyPages[4257].path = "/subjects/riskreport/riskexposures/contingentliabilitiesandcommitments";

geber_historyPages[4169] = new Object();
geber_historyPages[4169].title = "Risk rating";
geber_historyPages[4169].path = "/subjects/riskreport/riskrating";

geber_historyPages[4237] = new Object();
geber_historyPages[4237].title = "Coverage ratio";
geber_historyPages[4237].path = "/subjects/riskreport/riskrating/coverageratio";

geber_historyPages[4243] = new Object();
geber_historyPages[4243].title = "Net charge for losses on loans and advances";
geber_historyPages[4243].path = "/subjects/riskreport/riskrating/netchargeforlossesonloansandadvances";

geber_historyPages[4253] = new Object();
geber_historyPages[4253].title = "Loan loss provisions";
geber_historyPages[4253].path = "/subjects/riskreport/riskrating/loanlossprovisions";

geber_historyPages[4219] = new Object();
geber_historyPages[4219].title = "Risk structure by region";
geber_historyPages[4219].path = "/subjects/riskreport/riskstructurebyregion";

geber_historyPages[4229] = new Object();
geber_historyPages[4229].title = "Portfolio structure by sector";
geber_historyPages[4229].path = "/subjects/riskreport/portfoliostructurebysector";

geber_historyPages[4233] = new Object();
geber_historyPages[4233].title = "Fair Values";
geber_historyPages[4233].path = "/subjects/riskreport/fairvalues";

geber_historyPages[4241] = new Object();
geber_historyPages[4241].title = "Derivatives";
geber_historyPages[4241].path = "/subjects/riskreport/derivatives";

geber_historyPages[4245] = new Object();
geber_historyPages[4245].title = "Comfort letters";
geber_historyPages[4245].path = "/subjects/riskreport/comfortletters";

geber_historyPages[3957] = new Object();
geber_historyPages[3957].title = "Strategy and Outlook";
geber_historyPages[3957].path = "/subjects/strategyandoutlook";

geber_historyPages[4221] = new Object();
geber_historyPages[4221].title = "BA-CA Group overview";
geber_historyPages[4221].path = "/subjects/strategyandoutlook/ba-cagroupoverview";

geber_historyPages[4239] = new Object();
geber_historyPages[4239].title = "Financial targets";
geber_historyPages[4239].path = "/subjects/strategyandoutlook/financialtargets";

geber_historyPages[4261] = new Object();
geber_historyPages[4261].title = "Medium-term planning process";
geber_historyPages[4261].path = "/subjects/strategyandoutlook/financialtargets/medium-termplanningprocess";

geber_historyPages[4267] = new Object();
geber_historyPages[4267].title = "Value-based management";
geber_historyPages[4267].path = "/subjects/strategyandoutlook/financialtargets/value-basedmanagement";

geber_historyPages[4275] = new Object();
geber_historyPages[4275].title = "Implementation";
geber_historyPages[4275].path = "/subjects/strategyandoutlook/financialtargets/implementation";

geber_historyPages[4247] = new Object();
geber_historyPages[4247].title = "Human Resources";
geber_historyPages[4247].path = "/subjects/strategyandoutlook/humanresources";

geber_historyPages[4263] = new Object();
geber_historyPages[4263].title = "New internal service regulations";
geber_historyPages[4263].path = "/subjects/strategyandoutlook/humanresources/newinternalserviceregulations";

geber_historyPages[4269] = new Object();
geber_historyPages[4269].title = "Personnel marketing";
geber_historyPages[4269].path = "/subjects/strategyandoutlook/humanresources/personnelmarketing";

geber_historyPages[4273] = new Object();
geber_historyPages[4273].title = "Training programmes";
geber_historyPages[4273].path = "/subjects/strategyandoutlook/humanresources/trainingprogrammes";

geber_historyPages[4286] = new Object();
geber_historyPages[4286].title = "Apprenticeships";
geber_historyPages[4286].path = "/subjects/strategyandoutlook/humanresources/trainingprogrammes/apprenticeships";

geber_historyPages[4295] = new Object();
geber_historyPages[4295].title = "Group trainee programmes";
geber_historyPages[4295].path = "/subjects/strategyandoutlook/humanresources/trainingprogrammes/grouptraineeprogrammes";

geber_historyPages[4310] = new Object();
geber_historyPages[4310].title = "Training and e-learning";
geber_historyPages[4310].path = "/subjects/strategyandoutlook/humanresources/trainingprogrammes/trainingande-learning";

geber_historyPages[4314] = new Object();
geber_historyPages[4314].title = "Sales";
geber_historyPages[4314].path = "/subjects/strategyandoutlook/humanresources/trainingprogrammes/sales";

geber_historyPages[4318] = new Object();
geber_historyPages[4318].title = "Investments";
geber_historyPages[4318].path = "/subjects/strategyandoutlook/humanresources/trainingprogrammes/investments";

geber_historyPages[4322] = new Object();
geber_historyPages[4322].title = "Services";
geber_historyPages[4322].path = "/subjects/strategyandoutlook/humanresources/trainingprogrammes/services";

geber_historyPages[4284] = new Object();
geber_historyPages[4284].title = "Human resources development";
geber_historyPages[4284].path = "/subjects/strategyandoutlook/humanresources/humanresourcesdevelopment";

geber_historyPages[4297] = new Object();
geber_historyPages[4297].title = "Mentoring";
geber_historyPages[4297].path = "/subjects/strategyandoutlook/humanresources/humanresourcesdevelopment/mentoring";

geber_historyPages[4299] = new Object();
geber_historyPages[4299].title = "Health and employee safety";
geber_historyPages[4299].path = "/subjects/strategyandoutlook/humanresources/healthandemployeesafety";

geber_historyPages[4255] = new Object();
geber_historyPages[4255].title = "Sustainability";
geber_historyPages[4255].path = "/subjects/strategyandoutlook/sustainability";

geber_historyPages[4259] = new Object();
geber_historyPages[4259].title = "Outlook";
geber_historyPages[4259].path = "/subjects/strategyandoutlook/outlook";

geber_historyPages[4288] = new Object();
geber_historyPages[4288].title = "Economic environment and financial markets";
geber_historyPages[4288].path = "/subjects/strategyandoutlook/outlook/economicenvironmentandfinancialmarkets";

geber_historyPages[4293] = new Object();
geber_historyPages[4293].title = "Economic developments core markets";
geber_historyPages[4293].path = "/subjects/strategyandoutlook/outlook/economicdevelopmentscoremarkets";

geber_historyPages[4306] = new Object();
geber_historyPages[4306].title = "Group outlook";
geber_historyPages[4306].path = "/subjects/strategyandoutlook/outlook/groupoutlook";

geber_historyPages[4265] = new Object();
geber_historyPages[4265].title = "CEE outlook";
geber_historyPages[4265].path = "/subjects/strategyandoutlook/ceeoutlook";

geber_historyPages[4271] = new Object();
geber_historyPages[4271].title = "Poland";
geber_historyPages[4271].path = "/subjects/strategyandoutlook/ceeoutlook/poland";

geber_historyPages[4282] = new Object();
geber_historyPages[4282].title = "Czech Republic";
geber_historyPages[4282].path = "/subjects/strategyandoutlook/ceeoutlook/czechrepublic";

geber_historyPages[4291] = new Object();
geber_historyPages[4291].title = "Slovakia";
geber_historyPages[4291].path = "/subjects/strategyandoutlook/ceeoutlook/slovakia";

geber_historyPages[4302] = new Object();
geber_historyPages[4302].title = "Hungary";
geber_historyPages[4302].path = "/subjects/strategyandoutlook/ceeoutlook/hungary";

geber_historyPages[4304] = new Object();
geber_historyPages[4304].title = "Slovenia";
geber_historyPages[4304].path = "/subjects/strategyandoutlook/ceeoutlook/slovenia";

geber_historyPages[4308] = new Object();
geber_historyPages[4308].title = "Romania";
geber_historyPages[4308].path = "/subjects/strategyandoutlook/ceeoutlook/romania";

geber_historyPages[4312] = new Object();
geber_historyPages[4312].title = "Bulgaria";
geber_historyPages[4312].path = "/subjects/strategyandoutlook/ceeoutlook/bulgaria";

geber_historyPages[4316] = new Object();
geber_historyPages[4316].title = "Croatia";
geber_historyPages[4316].path = "/subjects/strategyandoutlook/ceeoutlook/croatia";

geber_historyPages[4320] = new Object();
geber_historyPages[4320].title = "Bosnia and Herzegovina";
geber_historyPages[4320].path = "/subjects/strategyandoutlook/ceeoutlook/bosniaandherzegovina";

geber_historyPages[4324] = new Object();
geber_historyPages[4324].title = "Serbia and Montenegro";
geber_historyPages[4324].path = "/subjects/strategyandoutlook/ceeoutlook/serbiaandmontenegro";

geber_historyPages[3101] = new Object();
geber_historyPages[3101].title = "servicepages";
geber_historyPages[3101].path = "/servicepages";

geber_historyPages[3109] = new Object();
geber_historyPages[3109].title = "Content";
geber_historyPages[3109].path = "/servicepages/content";

geber_historyPages[3121] = new Object();
geber_historyPages[3121].title = "Imprint";
geber_historyPages[3121].path = "/servicepages/imprint";

geber_historyPages[3125] = new Object();
geber_historyPages[3125].title = "Help";
geber_historyPages[3125].path = "/servicepages/help";

geber_historyPages[3127] = new Object();
geber_historyPages[3127].title = "Downloads";
geber_historyPages[3127].path = "/servicepages/downloads";

geber_historyPages[3129] = new Object();
geber_historyPages[3129].title = "Chart Generator";
geber_historyPages[3129].path = "/servicepages/chartgenerator";

geber_historyPages[3111] = new Object();
geber_historyPages[3111].title = "Subjects";
geber_historyPages[3111].path = "/servicepages/subjects";

geber_historyPages[3108] = new Object();
geber_historyPages[3108].title = "Welcome";
geber_historyPages[3108].path = "/servicepages/welcome";


function geber_history_registerPage(pageID)
{
   if (!pageID || !geber_historyPages || !geber_historyPages[pageID])
       return;

   var page = geber_historyPages[pageID];
   if (!page) return;

   var cookieSetter = new geber_lib_CookieClass();
   var cookieValue = cookieSetter.getValue(geber_histroyCookieName);
   if (!cookieValue || cookieValue.match(/[^0-9+]/)) cookieValue = "";

   var pageList = cookieValue.split("+");
   if (!pageList) pageList = new Array();

   while (pageList.length > 6)
   {
       pageList.shift();
   }
   if (pageList.length <= 1 || pageList.length > 1 && pageList[pageList.length - 1] != String(pageID))
       pageList[pageList.length] =  String(pageID);
   cookieSetter.setValue(geber_histroyCookieName, pageList.join("+"));
}



function geber_history_printHistory(pageID)
{
   if (!geber_historyPages)
       return;

   var cookieSetter = new geber_lib_CookieClass();


   var cookieValue = cookieSetter.getValue(geber_histroyCookieName);
   if (!cookieValue || cookieValue.match(/[^0-9+]/)) cookieValue = "";

   var pageList = cookieValue.split("+");
   if (!pageList) pageList = new Array();

   for (var i=0; i<pageList.length; i++)
   {
       if (i == pageList.length-1 && pageList[i] == pageID)
           break;

       var page = geber_historyPages[pageList[i]];
       if (page)
       {
           var basePath = geber_lib_getBaseURLPath() != "/" ? geber_lib_getBaseURLPath() :  "";

           var url = basePath + page.path + ".html";
           var imgUrl = basePath  + "/layout/img/icon_history.gif";

           var linkHTML = " <a href=\"" + url + "\"><img src=\"" + imgUrl  + "\">" + page.title + "</a>";
           document.write(linkHTML);
       }
   }

}