var dList = new Array();
var nList = new Array();
// dir staging to This is a test
dList[0] = 'charts';
dList[1] = 'fyidocs';
dList[2] = 'presentations';
dList[3] = 'publications';
dList[4] = 'research';
dList[5] = 'surveys';
dList[6] = 'ltrc';
dList[7] = 'tech';
dList[8] = 'citation';
dList[9] = 'efiling';
dList[10] = 'barassns';
dList[11] = 'lawlink';
dList[12] = 'interact';
dList[13] = 'mo';
dList[14] = 'ldi';
dList[15] = 'courtroomtech';
dList[16] = 'ethics';
dList[17] = 'futures';
dList[18] = 'icann';
dList[19] = '95smallfirm';
dList[20] = 'aall2001';
dList[21] = 'b&b2000';
dList[22] = 'beammeup';
dList[23] = 'beo0401';
dList[24] = 'beo1100';
dList[25] = 'cali2000';
dList[26] = 'cali2001';
dList[27] = 'cil2001';
dList[28] = 'cl2001';
dList[29] = 'famlaw2001';
dList[30] = 'futuretech';
dList[31] = 'iowa2001';
dList[32] = 'list&web';
dList[33] = 'mtbar2001cle';
dList[34] = 'nabe2001';
dList[35] = 'ncbp0700';
dList[36] = 'ncbp2002';
dList[37] = 'nysba2000';
dList[38] = 'scsc200202';
dList[39] = 'sla2001';
dList[40] = 'surveyoverview';
dList[41] = 'newsletter';
dList[42] = 'site-tation';
dList[43] = 'mtbar2002';
dList[44] = 'cyla2002';
dList[45] = 'opensoloprac';
dList[46] = 'slu2002';
dList[47] = 'bamsl2002';
dList[48] = 'ecla2002';
dList[49] = 'strategicplan';
nList[0] = 'Comparison Charts';
nList[1] = 'FYI Documents';
nList[2] = 'Presentations';
nList[3] = 'Publications';
nList[4] = 'Research';
nList[5] = 'Surveys';
nList[6] = 'LTRC Home';
nList[7] = 'Technology';
nList[8] = 'Uniform Citation';
nList[9] = 'Electronic Court Filing';
nList[10] = 'Bar Associations';
nList[11] = 'Lawlink';
nList[12] = 'Contact Us';
nList[13] = 'MEMBERS ONLY';
nList[14] = 'Legal Data Interchange & XML';
nList[15] = 'Court Technology';
nList[16] = 'Tech & Ethics';
nList[17] = 'Future of the Profession';
nList[18] = 'Domain Names & ICANN';
nList[19] = '1995 Small Firm Survey';
nList[20] = 'American Association of Law Libraries Annual Meeting 2001';
nList[21] = 'ABA Bricks & Bytes Conference 2000';
nList[22] = 'SOC Conference 2000';
nList[23] = 'Bar Executive Orientation July 2000';
nList[24] = 'Bar Executive Orientation November 2000';
nList[25] = 'CALI Conference 2000';
nList[26] = 'CALI Conference 2001';
nList[27] = 'Computers in Libraries 2001';
nList[28] = 'Chicago Legaltech Show 2001';
nList[29] = 'ABA Section on Family Law Annual CLE Conference 2001';
nList[30] = 'The Future of Technology 2000';
nList[31] = 'State Bar of Iowa Solo & Small Firm Presentation 2001';
nList[32] = 'Listserv(r) and Webboard';
nList[33] = 'State Bar of Montana 2001 CLE Tech Moments';
nList[34] = 'National Association of Bar Executives 2000';
nList[35] = 'National Conference of Bar Presidents 2000 Annual Meeting';
nList[36] = 'National Conference of Bar Presidents 2002 Midyear Meeting';
nList[37] = 'New York State Bar Executives 2000';
nList[38] = 'Strategic Communications 2002';
nList[39] = 'Special Libraries Association Annual Meeting 2001';
nList[40] = '1999 Technology Survey Overview';
nList[41] = 'SCOTIS Newsletters';
nList[42] = 'Site-Tation Sites';
nList[43] = 'State Bar of Montana 2002 CLE Tech Moments';
nList[44] = 'California Young Lawyers Association';
nList[45] = 'Opening a Solo Practice';
nList[46] = 'Technology and the Law Student';
nList[47] = 'Tips and Tricks for Leveraging Your Technology';
nList[48] = 'Executives of California Legal Assocations 2002 Retreat';
nList[49] = 'Law Firm Strategic Technology Planning';
function breadcrumbs(sClass, sDelimiter)
{
if(!sDelimiter) sDelimiter = '>';
var sDelimiter2 = '>';
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.split('/');
if(aURL)
{
var sOutput = 'Home ';
var sPath = '/';
for(var i = 0; i < aURL.length; i++)
{
if(aURL[i].indexOf('.html')!=-1)continue;
sPath += aURL[i] + '/';
for(var s = 0; s < dList.length; s++)if(aURL[i]==dList[s])aURL[i]=nList[s];
sOutput += ' ' + sDelimiter + ' ';
sOutput += '' + aURL[i] + '';
}
// sOutput += document.title;
sOutput += ' ' + sDelimiter2 + '';
document.write(sOutput);
}
}
// Create absolute reference for Lawtechnology.org
function idserver () {
var thisplace = location.hostname
if (thisplace == "www.lawtechnology.org") document.write("");
else document.write("");
}