
var dList = new Array();
var nList = new Array();

// dir staging to This is a test

dList[0] = '9000';
nList[0] = 'HP 9000';
dList[1] = 'alpha_retaintrust';
nList[1] = 'Alpha RetainTrust';
dList[2] = 'openvms';
nList[2] = 'OpenVMS';
dList[3] = 'customertimes';
nList[3] = 'Customer Times';
dList[4] = 'e3000';
nList[4] = 'HP e3000';
dList[5] = 'buy';
nList[5] = 'buy';
dList[6] = 'case_studies';
nList[6] = 'case studies';
dList[7] = 'europe';
nList[7] = 'Europe';
dList[8] = 'other';
nList[8] = 'useful links';
dList[9] = 'partners';
nList[9] = 'partners';
dList[10] = 'country';
nList[10] = 'country';
dList[11] = 'industry';
nList[11] = 'industry';
dList[12] = 'transition';
nList[12] = 'transition';
dList[13] = 'info_library';
nList[13] = 'information library';
dList[14] = 'mpeix';
nList[14] = 'mpe/ix';
dList[15] = 'development';
nList[15] = 'development software';
dList[16] = 'operating';
nList[16] = 'operating system software';
dList[17] = 'news_events';
nList[17] = 'news and events';
dList[18] = 'discont';
nList[18] = 'end-of-support dates';
dList[19] = 'programs';
nList[19] = 'programs';
dList[20] = 'storage';
nList[20] = 'storage';
dList[21] = 'support';
nList[21] = 'support';
dList[22] = 'nonstop';
nList[22] = 'NonStop';
dList[23] = 'art';
nList[23] = 'Alpha RetainTrust';
dList[24] = 'software';
nList[24] = 'Software';
dList[25] = 'americas';
nList[25] = 'Americas';
 

function breadcrumbs(sClass, sDelimiter)
{
    sClass= 'udrlinesmall';
	if(!sDelimiter) sDelimiter = '>';
    var sURL = (location.pathname.indexOf('?') != -1) ? location.pathname.substring(0, location.pathname.indexOf('?')) : location.pathname; 
     sURL = (location.pathname.charAt(0) == '/') ? location.pathname.substring(1) : location.pathname;
	 var aURL = sURL.toLowerCase().split('/');
    if(aURL)
    {
  var sOutput = '<a href="/products1/evolution/" class="udrlinesmall">Business Systems Evolution</a>' ;
// 	 var sOutput = '';
      var sPath = '/products1/evolution/';
      for(var i = 2; i < aURL.length-1; i++)
	        {
   
  
        if(aURL[i].indexOf('.HTML')!=-1)continue;
        if(aURL[i].indexOf('.HTM')!=-1)continue;
        if(aURL[i].indexOf('.html')!=-1)continue;
        if(aURL[i].indexOf('.htm')!=-1)continue;
        sOutput += ' ' + sDelimiter + ' ';
        sPath += aURL[i] + '/';
        for(var s = 0; s < dList.length; s++)if(aURL[i]==dList[s])aURL[i]=nList[s];        
        sOutput += '<a href="' + sPath + '"';
        if(sClass) sOutput += ' class="' + sClass +'"';
        sOutput += '>' + aURL[i] + '</a>';
      }
	if( sOutput.substring(sOutput.length-1, sOutput.length-1) == '>')
		{
	      var sWrite = sOutput.substring(0,sOutput.length-1)
		}
		else
		{
	      var sWrite = sOutput.substring(0,sOutput.length)
		}
      document.write(sWrite);
    }
}
